From 94b16dc4ed88a7bad4b8d6dcb0e3804c24e408dd Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Wed, 12 Dec 2007 22:37:39 +0200 Subject: Wrote setup.py. --- setup.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..558c0d6 --- /dev/null +++ b/setup.py @@ -0,0 +1,26 @@ +from distutils.core import setup + +setup(name='CoverageTestRunner', + version='1.0', + description='fail Python program unit tests unless they test everything', + long_description='''\ +CoverageTestRunner runs unit tests implemented using the unittest module +in the Python standard library. It runs them using coverage.py and fails +the test if all statements are not covered. +''', + author='Lars Wirzenius', + author_email='liw@iki.fi', + url='http://braawi.org/coveragetestrunner.html', + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Environment :: Console', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: GNU General Public License (GPL)', + 'Natural Language :: English', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Topic :: Software Development :: Testing', + ], + license='GNU General Public License, version 2 or later', + py_modules=['CoverageTestRunner'], + ) -- cgit v1.2.1