setup.py: flesh out setup in preparation for PyPI posting
authorW. Trevor King <wking@tremily.us>
Thu, 25 Oct 2012 23:34:06 +0000 (19:34 -0400)
committerW. Trevor King <wking@tremily.us>
Thu, 25 Oct 2012 23:34:06 +0000 (19:34 -0400)
setup.py

index 709135deba0e1364e2fb924306b225d889f63297..cd49bf0e2caa2f31769127a8cdbc309c0f534551 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -6,6 +6,8 @@ import os.path
 from libbe import version
 
 
+_this_dir = os.path.dirname(__file__)
+
 rev_id = version.version_info['revision']
 rev_date = version.version_info['date']
 
@@ -18,8 +20,34 @@ if os.path.exists(man_path):
 setup(
     name='bugs-everywhere',
     version='{}'.format(version.version()),
-    description='Bugtracker supporting distributed revision control',
+    maintainer='W. Trevor King',
+    maintainer_email='wking@tremily.us',
     url='http://bugseverywhere.org/',
+    download_url=(
+        'http://downloads.bugseverywhere.org/releases/be-{}.tar.gz'.format(
+            version.version())),
+    license='GNU General Public License (GPL)',
+    platforms=['all'],
+    description='Bugtracker supporting distributed revision control',
+    long_description=open(os.path.join(_this_dir, 'README'), 'r').read(),
+    classifiers=[
+        'Development Status :: 4 - Beta',
+        'Environment :: Console',
+        'Environment :: Web Environment',
+        'Framework :: CherryPy',
+        'Intended Audience :: Customer Service',
+        'Intended Audience :: Developers',
+        'Intended Audience :: End Users/Desktop',
+        'License :: OSI Approved :: GNU General Public License (GPL)',
+        'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
+        'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
+        'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
+        'Operating System :: OS Independent',
+        'Programming Language :: Python',
+        'Programming Language :: Python :: 2.7',
+        'Topic :: Software Development :: Bug Tracking',
+        ],
+
     packages=['libbe',
               'libbe.command',
               'libbe.storage',