[Checkins] SVN: megrok.genshi/trunk/setup.py Preparing for release.

Lennart Regebro regebro at gmail.com
Mon Nov 12 10:11:06 EST 2007


Log message for revision 81768:
  Preparing for release.
  

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

-=-
Modified: megrok.genshi/trunk/setup.py
===================================================================
--- megrok.genshi/trunk/setup.py	2007-11-12 13:55:10 UTC (rev 81767)
+++ megrok.genshi/trunk/setup.py	2007-11-12 15:11:05 UTC (rev 81768)
@@ -1,26 +1,31 @@
 from setuptools import setup, find_packages
 
-version = '0.0'
+version = '0.9'
 
 setup(name='megrok.genshi',
       version=version,
-      description="",
+      description="Genshi integration in Grok",
       long_description="""\
+Support for using the Genshi templating language in the Grok web application
+framework. See http://genshi.edgewall.org/ and http://grok.zope.org/
 """,
       # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
-      classifiers=[], 
-      keywords="",
-      author="",
-      author_email="",
-      url="",
-      license="",
+      classifiers=['Development Status :: 3 - Alpha',
+                   'Framework :: Zope3',
+                   'License :: OSI Approved :: Zope Public License',
+                   'Operating System :: OS Independent',
+                   ], 
+      keywords="grok genshi",
+      author="Lennart Regebro, Guido Wesdorp",
+      author_email="regebro at gmail.com",
+      url="http://svn.zope.org/megrok.genshi/",
+      license="ZPL",
       package_dir={'': 'src'},
       packages=find_packages('src'),
       include_package_data=True,
       zip_safe=False,
       install_requires=['setuptools',
-                        'grok',
-                        # Add extra requirements here
+                        'Genshi',
                         ],
       entry_points="""
       # Add entry points here



More information about the Checkins mailing list