Skip to content

Commit

Permalink
Improved setup file.
Browse files Browse the repository at this point in the history
  • Loading branch information
rik0 committed Sep 12, 2012
1 parent 3bd9784 commit 3ee89ad
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions setup.py
Expand Up @@ -5,18 +5,23 @@

setup(name='ParamUnittest',
version=version,
description="Simple unittest extension to have parametrized unit tests.",
description="Simple extension to have parametrized unit tests.",
long_description="""\
This package allows to create parametrized unit-tests that work with the
standard unittest package. A parametrized test case is automatically converted
to multiple test cases. Since they are TestCase subclasses, they work with
other test suites that recognize TestCases.
""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
This package allows to create parametrized
unit-tests that work with the standard unittest package. A
parametrized test case is automatically converted to multiple test
cases. Since they are TestCase subclasses, they work with other
test suites that recognize TestCases.
""",
classifiers=[
'Topic :: Software Development :: Testing',
],
# Get strings from
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='unittest',
author='Enrico Franchi',
author_email='enrico.franchi@gmail.com',
url='',
url='https://github.com/rik0/ParamUnittest',
license='BSD',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
Expand Down

0 comments on commit 3ee89ad

Please sign in to comment.