summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoretobi <git@e-tobi.net>2011-10-01 18:16:17 +0200
committeretobi <git@e-tobi.net>2011-10-01 18:16:17 +0200
commit022c74a59ee3cb01f0f1218709cec5ac81e4767e (patch)
tree510238b2c7524ac7a6f8f068700d2965f4f5cb41
parent5622fe4921a0b825ff7fce8d683c71a9d0a7eb9c (diff)
downloadvdrnfofs-022c74a59ee3cb01f0f1218709cec5ac81e4767e.tar.gz
vdrnfofs-022c74a59ee3cb01f0f1218709cec5ac81e4767e.tar.bz2
Enable "./setup.py test" for running the tests
-rw-r--r--HISTORY2
-rwxr-xr-xsetup.py4
2 files changed, 5 insertions, 1 deletions
diff --git a/HISTORY b/HISTORY
index 2f5c07c..6ce6aa4 100644
--- a/HISTORY
+++ b/HISTORY
@@ -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
diff --git a/setup.py b/setup.py
index 63145d2..33c5450 100755
--- a/setup.py
+++ b/setup.py
@@ -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",
)