summaryrefslogtreecommitdiff
path: root/setup.py
blob: be75c2394940f28442db60194d01969ffd593513 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from distutils.core import setup

setup(name='CoverageTestRunner',
      version='1.1',
      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'],
     )