[Checkins] SVN: Sandbox/ulif/megrok.chameleon/setup.py Let setup.py apply to our new package.

Uli Fouquet uli at gnufix.de
Sat Feb 21 09:18:48 EST 2009


Log message for revision 96936:
  Let setup.py apply to our new package.

Changed:
  U   Sandbox/ulif/megrok.chameleon/setup.py

-=-
Modified: Sandbox/ulif/megrok.chameleon/setup.py
===================================================================
--- Sandbox/ulif/megrok.chameleon/setup.py	2009-02-21 14:18:22 UTC (rev 96935)
+++ Sandbox/ulif/megrok.chameleon/setup.py	2009-02-21 14:18:47 UTC (rev 96936)
@@ -1,14 +1,14 @@
 from setuptools import setup, find_packages
 
-version = '1.0dev'
+version = '0.1dev'
 
 long_description = (open('README.txt').read() +
                     '\n\n' +
                     open('CHANGES.txt').read())
 
-setup(name='megrok.genshi',
+setup(name='megrok.chameleon',
       version=version,
-      description="Genshi integration in Grok",
+      description="Chameleon page template support for Grok",
       long_description=long_description,
       # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
       classifiers=['Development Status :: 3 - Alpha',
@@ -19,10 +19,10 @@
                    'Operating System :: OS Independent',
                    'Topic :: Internet :: WWW/HTTP',
                    ], 
-      keywords="grok genshi",
-      author="Lennart Regebro, Guido Wesdorp",
-      author_email="regebro at gmail.com",
-      url="http://svn.zope.org/megrok.genshi/",
+      keywords="grok chameleon template",
+      author="Uli Fouquet",
+      author_email="grok-dev at zope.org",
+      url="http://pypi.python.org/pypi/megrok.chameleon",
       license="ZPL",
       package_dir={'': 'src'},
       packages=find_packages('src'),
@@ -30,7 +30,7 @@
       zip_safe=False,
       install_requires=['setuptools',
                         'grok',
-                        'Genshi',
+                        'chameleon.zpt',
                         ],
       entry_points="""
       # Add entry points here



More information about the Checkins mailing list