summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Collins <robertc@robertcollins.net>2012-12-18 15:54:10 +1300
committerRobert Collins <robertc@robertcollins.net>2012-12-18 15:54:10 +1300
commit3bf3afd5b96d8e00f03a49b1e4e0f0b3bf553353 (patch)
tree51c85a47f52244da034bf8873439931d65928793
parente294c26962cd5fb436b11a16885dc9d0e7390bb0 (diff)
downloadtestrepository-git-0.0.9.tar.gz
Release 0.0.9.0.0.9
-rw-r--r--NEWS3
-rwxr-xr-xsetup.py11
-rw-r--r--testrepository/__init__.py2
3 files changed, 15 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index fc7e110..74f56e6 100644
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,9 @@ testrepository release notes
NEXT (In development)
+++++++++++++++++++++
+0.0.9
++++++
+
IMPROVEMENTS
------------
diff --git a/setup.py b/setup.py
index 1f2662e..6dfc0e4 100755
--- a/setup.py
+++ b/setup.py
@@ -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)