[z3-checkins] r43994 - z3/NudgeNudge/trunk

philikon at codespeak.net philikon at codespeak.net
Sat Jun 2 17:00:14 CEST 2007


Author: philikon
Date: Sat Jun  2 17:00:13 2007
New Revision: 43994

Modified:
   z3/NudgeNudge/trunk/setup.py
Log:
Fully eggify NudgeNudge by depending on Zope 3 eggs


Modified: z3/NudgeNudge/trunk/setup.py
==============================================================================
--- z3/NudgeNudge/trunk/setup.py	(original)
+++ z3/NudgeNudge/trunk/setup.py	Sat Jun  2 17:00:13 2007
@@ -5,8 +5,6 @@
 setup(name='NudgeNudge',
       version=version,
       description="",
-      long_description="""\
-""",
       # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
       classifiers=[], 
       keywords="",
@@ -20,9 +18,13 @@
       zip_safe=False,
       install_requires=['setuptools',
                         'grok',
-                        # -*- Extra requirements: -*-
+                        'ZODB3',
+                        'zope.interface',
+                        'zope.schema',
+                        'zope.component',
+                        'zope.app.catalog',
+                        'zope.app.authentication',
+                        'zope.app.security',
+                        'zope.app.securitypolicy',
                         ],
-      entry_points="""
-      # -*- Entry points: -*-
-      """,
       )


More information about the z3-checkins mailing list