From 553e0a70a190ab8fa81348532fb32b118ea6592f Mon Sep 17 00:00:00 2001 From: Robert Collins Date: Mon, 1 Feb 2010 16:05:42 +1100 Subject: Improve setup.py to setup pypi web pages better. --- setup.py | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d974b0f..ace9f08 100755 --- a/setup.py +++ b/setup.py @@ -1,13 +1,27 @@ #!/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="testscenarios", version="0.2", description="Testscenarios, a pyunit extension for dependency injection", + long_description=description, maintainer="Robert Collins", maintainer_email="robertc@robertcollins.net", url="https://launchpad.net/testscenarios", packages=['testscenarios', 'testscenarios.tests'], - package_dir = {'':'lib'} + 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