From f9fc4ef7300d0569bbe532dd84dc027bb60715d1 Mon Sep 17 00:00:00 2001 From: Robert Collins Date: Sat, 27 Feb 2010 09:48:51 +1100 Subject: Release 0.2.4. --- NEWS | 3 +++ setup.py | 18 ++++++++++++++++-- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index caa45d9..292fa08 100644 --- a/NEWS +++ b/NEWS @@ -5,6 +5,9 @@ testresources release notes IN DEVELOPMENT -------------- +0.2.4 +----- + CHANGES ~~~~~~~ diff --git a/setup.py b/setup.py index cb6dd2d..ac7aaa6 100755 --- a/setup.py +++ b/setup.py @@ -1,14 +1,28 @@ #!/usr/bin/env python from distutils.core import setup +import os.path + +description = file(os.path.join(os.path.dirname(__file__), 'README'), 'rb').read() setup(name="testresources", - version="0.2.3", + version="0.2.4", description="Testresources, a pyunit extension for managing expensive " "test resources", - maintainer="Test Resources developers", + long_description=description, + maintainer="Testresources developers", maintainer_email="https://launchpad.net/~testresources-developers", url="https://launchpad.net/testresources", packages=['testresources', 'testresources.tests'], package_dir = {'':'lib'} + 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', + 'Topic :: Software Development :: Quality Assurance', + 'Topic :: Software Development :: Testing', + ], ) -- cgit v1.2.1