Adds additional metadata to setup.py

* trove classifiers
* long description
* url and download_url
* ...
This commit is contained in:
Will Kahn-Greene 2011-08-01 12:13:02 -04:00
parent 21cdb64656
commit b7e57b1f76

View File

@ -49,10 +49,6 @@ setup(
# 'lxml', # 'lxml',
], ],
test_suite='nose.collector', test_suite='nose.collector',
license = 'AGPLv3',
author = 'Free Software Foundation and contributors',
author_email = 'cwebber@gnu.org',
entry_points = """\ entry_points = """\
[console_scripts] [console_scripts]
gmg = mediagoblin.gmg_commands:main_cli gmg = mediagoblin.gmg_commands:main_cli
@ -66,4 +62,19 @@ setup(
[babel.extractors] [babel.extractors]
jinja2 = jinja2.ext:babel_extract jinja2 = jinja2.ext:babel_extract
""", """,
license='AGPLv3',
author='Free Software Foundation and contributors',
author_email='cwebber@gnu.org',
url="http://mediagoblin.org/",
download_url="http://mediagoblin.org/download/",
long_description=open('README').read(),
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"License :: OSI Approved :: GNU Affero General Public License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content"
],
) )