[Checkins] SVN: megrok.trails/trunk/setup.py Gave megrok.trails halfway decent metadata.

Brandon Rhodes brandon at rhodesmill.org
Wed Jun 25 00:51:02 EDT 2008


Log message for revision 87744:
  Gave megrok.trails halfway decent metadata.
  

Changed:
  U   megrok.trails/trunk/setup.py

-=-
Modified: megrok.trails/trunk/setup.py
===================================================================
--- megrok.trails/trunk/setup.py	2008-06-25 04:50:35 UTC (rev 87743)
+++ megrok.trails/trunk/setup.py	2008-06-25 04:51:00 UTC (rev 87744)
@@ -1,21 +1,32 @@
 from setuptools import setup, find_packages
 
-version = '0.0'
+version = '1.0dev'
 
+def read(*filenames):
+    return open(os.path.join(os.path.dirname(__file__), *filenames)).read()
+
 setup(name='megrok.trails',
       version=version,
-      description="",
-      long_description="""\
-""",
+      description="URL patterns for Grok applications",
+      long_description=read('README.txt'),
       # Use classifiers that are already listed at:
       # http://pypi.python.org/pypi?%3Aaction=list_classifiers
-      classifiers=[], 
-      keywords="",
-      author="",
-      author_email="",
-      url="",
-      license="",
+      classifiers=['Development Status :: 5 - Production/Stable',
+                   'Environment :: Web Environment',
+                   'Framework :: Zope3',
+                   'Intended Audience :: Developers',
+                   'License :: OSI Approved :: Zope Public License',
+                   'Operating System :: OS Independent',
+                   'Programming Language :: Python',
+                   'Topic :: Internet :: WWW/HTTP',
+                   'Topic :: Software Development :: Libraries',
+                   ],
+      keywords="grok megrok trail trails url",
+      author="Brandon Craig Rhodes",
+      author_email="brandon at rhodesmill.org",
+      license="ZPL",
       package_dir={'': 'src'},
+      namespace_packages=['megrok'],
       packages=find_packages('src'),
       include_package_data=True,
       zip_safe=False,



More information about the Checkins mailing list