diff options
| author | Robert Collins <robertc@robertcollins.net> | 2013-01-20 11:38:59 +1300 |
|---|---|---|
| committer | Robert Collins <robertc@robertcollins.net> | 2013-01-20 11:38:59 +1300 |
| commit | cb2a1ac4182535ed20323303edc77e7a1fa6f9ff (patch) | |
| tree | aab08cc4afa38ce6ece4c84673c57f686814f4c1 /setup.py | |
| parent | cf53bcf11057aa93ddf17dcff899434f37ce920c (diff) | |
| download | testresources-git-0.2.6.tar.gz | |
Release 0.2.6 and add Python3.2 compat.0.2.6
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -3,10 +3,10 @@ from distutils.core import setup import os.path -description = file(os.path.join(os.path.dirname(__file__), 'README'), 'rb').read() +description = open(os.path.join(os.path.dirname(__file__), 'README'), 'rt').read() setup(name="testresources", - version="0.2.5", + version="0.2.6", description="Testresources, a pyunit extension for managing expensive " "test resources", long_description=description, @@ -15,6 +15,7 @@ setup(name="testresources", url="https://launchpad.net/testresources", packages=['testresources', 'testresources.tests'], package_dir = {'':'lib'}, + keywords="unittest testing fixtures", classifiers = [ 'Development Status :: 6 - Mature', 'Intended Audience :: Developers', @@ -22,6 +23,7 @@ setup(name="testresources", 'License :: OSI Approved :: Apache Software License', 'Operating System :: OS Independent', 'Programming Language :: Python', + 'Programming Language :: Python :: 3', 'Topic :: Software Development :: Quality Assurance', 'Topic :: Software Development :: Testing', ], |
