# HG changeset patch # User cmlenz # Date 1154624915 0 # Node ID 9a2acebe84f74540ed5d24fbaa520d7394a8bbf5 # Parent 93bbdcf9428bb8fa3167833fb591a218b49bd52f Add Trove classifiers and download URL to `setup.py`. diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -22,6 +22,20 @@ description='Toolkit for stream-based generation of markup for the web', author='Edgewall Software', author_email='info@edgewall.org', license='BSD', url='http://markup.edgewall.org/', + download_url='http://markup.edgewall.org/wiki/MarkupDownload' + classifiers = [ + 'Development Status :: 4 - Beta', + 'Environment :: Web Environment', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: BSD License', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', + 'Topic :: Software Development :: Libraries :: Python Modules', + 'Topic :: Text Processing :: Markup :: HTML', + 'Topic :: Text Processing :: Markup :: XML' + ], + packages=['markup'], test_suite = 'markup.tests.suite',