diff options
| author | Robert Collins <robertc@robertcollins.net> | 2012-12-18 15:54:10 +1300 |
|---|---|---|
| committer | Robert Collins <robertc@robertcollins.net> | 2012-12-18 15:54:10 +1300 |
| commit | 3bf3afd5b96d8e00f03a49b1e4e0f0b3bf553353 (patch) | |
| tree | 51c85a47f52244da034bf8873439931d65928793 | |
| parent | e294c26962cd5fb436b11a16885dc9d0e7390bb0 (diff) | |
| download | testrepository-git-0.0.9.tar.gz | |
Release 0.0.9.0.0.9
| -rw-r--r-- | NEWS | 3 | ||||
| -rwxr-xr-x | setup.py | 11 | ||||
| -rw-r--r-- | testrepository/__init__.py | 2 |
3 files changed, 15 insertions, 1 deletions
@@ -5,6 +5,9 @@ testrepository release notes NEXT (In development) +++++++++++++++++++++ +0.0.9 ++++++ + IMPROVEMENTS ------------ @@ -69,6 +69,17 @@ setup(name='testrepository', description='A repository of test results.', long_description=description, keywords="subunit unittest testrunner", + classifiers = [ + 'Development Status :: 6 - Mature', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: BSD License', + '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', + ], scripts=['testr'], version=get_version(), packages=['testrepository', diff --git a/testrepository/__init__.py b/testrepository/__init__.py index 395bfea..e7f9980 100644 --- a/testrepository/__init__.py +++ b/testrepository/__init__.py @@ -33,4 +33,4 @@ The tests package contains tests and test specific support code. # established at this point, and setup.py will use a version of next-$(revno). # If the releaselevel is 'final', then the tarball will be major.minor.micro. # Otherwise it is major.minor.micro~$(revno). -__version__ = (0, 0, 8, 'final', 0) +__version__ = (0, 0, 9, 'final', 0) |
