[Checkins] SVN: grokproject/trunk/setup.py Depending on a newer version of paste.script as otherwise the should_echo

Reinout van Rees reinout at vanrees.org
Fri May 2 11:06:23 EDT 2008


Log message for revision 86098:
  Depending on a newer version of paste.script as otherwise the should_echo
  argument raises an error.
  This also fixes the problem that (at least Reinout's) global paste doesn't see
  any grok templates.
  

Changed:
  U   grokproject/trunk/setup.py

-=-
Modified: grokproject/trunk/setup.py
===================================================================
--- grokproject/trunk/setup.py	2008-05-02 14:36:03 UTC (rev 86097)
+++ grokproject/trunk/setup.py	2008-05-02 15:06:21 UTC (rev 86098)
@@ -11,14 +11,16 @@
     author_email='grok-dev at zope.org',
     url='https://launchpad.net/grok',
     download_url='svn://svn.zope.org/repos/main/grokproject/trunk#egg=grokproject-dev',
-    description='Script that sets up a grok project directory, installs Zope 3 and grok and creates a template for a grok application.',
+    description="""
+    Script that sets up a grok project directory, installs Zope 3 and grok and
+    creates a template for a grok application.""",
     long_description=long_description,
     license='ZPL',
 
     packages=find_packages(),
     include_package_data=True,
     zip_safe=False,
-    install_requires=['PasteScript>=1.3',],
+    install_requires=['PasteScript>=1.6',],
     entry_points={
     'console_scripts': ['grokproject = grokproject:main'],
     'paste.paster_create_template': ['grok = grokproject:GrokProject']},



More information about the Checkins mailing list