diff options
author | etobi <git@e-tobi.net> | 2011-10-01 18:16:17 +0200 |
---|---|---|
committer | etobi <git@e-tobi.net> | 2011-10-01 18:16:17 +0200 |
commit | 022c74a59ee3cb01f0f1218709cec5ac81e4767e (patch) | |
tree | 510238b2c7524ac7a6f8f068700d2965f4f5cb41 | |
parent | 5622fe4921a0b825ff7fce8d683c71a9d0a7eb9c (diff) | |
download | vdrnfofs-022c74a59ee3cb01f0f1218709cec5ac81e4767e.tar.gz vdrnfofs-022c74a59ee3cb01f0f1218709cec5ac81e4767e.tar.bz2 |
Enable "./setup.py test" for running the tests
-rw-r--r-- | HISTORY | 2 | ||||
-rwxr-xr-x | setup.py | 4 |
2 files changed, 5 insertions, 1 deletions
@@ -1,7 +1,9 @@ version 0.0.7 + - Fixed file/dir node permissions - Added README - BSD Licence - Added TODO and HISTORY + - Enable "./setup.py test" for running the tests version 0.0.6 - inital release @@ -27,6 +27,7 @@ from distutils.core import setup from distutils.file_util import copy_file from distutils.command.build_py import build_py from distutils.command.install_data import install_data +from setuptools import setup, find_packages from glob import glob from subprocess import check_call @@ -37,7 +38,8 @@ setup ( maintainer = "Tobias Grimm", maintainer_email = "vdr@e.tobi.net", description = "Access VDR recordings as mpg and nfo files", - license = "GNU GPL v2", + license = "BSD", scripts = ['bin/vdrnfofs'], packages = ['vdrnfofs'], + test_suite = "tests", ) |