[Checkins] SVN: grokproject/trunk/src/grokproject/template/setup.py_tmpl Fix https://bugs.launchpad.net/grok/+bug/80400:

Philipp von Weitershausen philikon at philikon.de
Thu Jan 18 12:35:35 EST 2007


Log message for revision 72095:
  Fix https://bugs.launchpad.net/grok/+bug/80400:
    The setup.py of newly created grokproject should included
    setuptools and grok in the install_requires.
  

Changed:
  U   grokproject/trunk/src/grokproject/template/setup.py_tmpl

-=-
Modified: grokproject/trunk/src/grokproject/template/setup.py_tmpl
===================================================================
--- grokproject/trunk/src/grokproject/template/setup.py_tmpl	2007-01-18 16:31:28 UTC (rev 72094)
+++ grokproject/trunk/src/grokproject/template/setup.py_tmpl	2007-01-18 17:35:35 UTC (rev 72095)
@@ -1,5 +1,4 @@
 from setuptools import setup, find_packages
-import sys, os
 
 version = ${repr(version)|"0.0"}
 
@@ -8,7 +7,8 @@
       description="${description|nothing}",
       long_description="""\
 ${long_description|nothing}""",
-      classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
+      # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
+      classifiers=[], 
       keywords=${repr(keywords)|empty},
       author=${repr(author)|empty},
       author_email=${repr(author_email)|empty},
@@ -18,9 +18,10 @@
       packages=find_packages('src'),
       include_package_data=True,
       zip_safe=${repr(bool(zip_safe))|False},
-      install_requires=[
-          # -*- Extra requirements: -*-
-      ],
+      install_requires=['setuptools',
+                        'grok',
+                        # -*- Extra requirements: -*-
+                        ],
       entry_points="""
       # -*- Entry points: -*-
       """,



More information about the Checkins mailing list