From bfaa7e176687865b46cf10a56168765d181a0099 Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Wed, 4 Feb 2009 18:12:16 -0500 Subject: Added some more meta-data to setup.py. Shouldn't have to manually edit pypi page anymore. --- setup.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/setup.py b/setup.py index f840b62..078a535 100755 --- a/setup.py +++ b/setup.py @@ -5,6 +5,8 @@ from distutils.core import setup setup( name = 'Markdown', version = '2.0-beta-2', + url = 'http://www.freewisdom.org/projects/python-markdown', + download_url = 'http://pypi.python.org/packages/source/M/Markdown/markdown-1.7.tar.gz', description = "Python implementation of Markdown.", author = "Manfred Stienstra and Yuri takhteyev", author_email = "yuri [at] freewisdom.org", @@ -14,4 +16,16 @@ setup( license = "BSD License", packages = ['markdown', 'markdown.extensions'], scripts = ['markdown.py'], + classifiers = ['Development Status :: 5 - Production/Stable', + 'License :: OSI Approved :: BSD License', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Topic :: Communications :: Email :: Filters', + 'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries', + 'Topic :: Internet :: WWW/HTTP :: Site Management', + 'Topic :: Software Development :: Documentation', + 'Topic :: Software Development :: Libraries :: Python Modules', + 'Topic :: Text Processing :: Filters', + 'Topic :: Text Processing :: Markup :: HTML', + ], ) -- cgit v1.2.3