[Checkins] SVN: zope.publisher/trunk/ - Remove `find-links` from buildout configuration

Baiju M baiju.m.mail at gmail.com
Wed Feb 25 12:27:45 EST 2009


Log message for revision 97270:
  - Remove `find-links` from buildout configuration
  - Whitespace fixes
  

Changed:
  U   zope.publisher/trunk/buildout.cfg
  U   zope.publisher/trunk/setup.py

-=-
Modified: zope.publisher/trunk/buildout.cfg
===================================================================
--- zope.publisher/trunk/buildout.cfg	2009-02-25 16:19:04 UTC (rev 97269)
+++ zope.publisher/trunk/buildout.cfg	2009-02-25 17:27:45 UTC (rev 97270)
@@ -2,8 +2,6 @@
 develop = .
 parts = test
 
-find-links = http://download.zope.org/distribution/
-
 [test]
 recipe = zc.recipe.testrunner
 eggs = zope.publisher [test]

Modified: zope.publisher/trunk/setup.py
===================================================================
--- zope.publisher/trunk/setup.py	2009-02-25 16:19:04 UTC (rev 97269)
+++ zope.publisher/trunk/setup.py	2009-02-25 17:27:45 UTC (rev 97270)
@@ -24,7 +24,7 @@
 """
 
 setup(name='zope.publisher',
-      version = '3.5.7dev',
+      version='3.5.7dev',
       url='http://pypi.python.org/pypi/zope.publisher',
       license='ZPL 2.1',
       author='Zope Corporation and Contributors',
@@ -34,10 +34,10 @@
                         + '\n\n'
                         + open('CHANGES.txt').read()),
 
-      entry_points = entry_points,
+      entry_points=entry_points,
 
       packages=find_packages('src'),
-      package_dir = {'': 'src'},
+      package_dir={'': 'src'},
 
       namespace_packages=['zope',],
       install_requires=['setuptools',
@@ -52,10 +52,10 @@
                         'zope.deprecation',
                         'zope.deferredimport'],
       extras_require=dict(
-          test = ['zope.testing',
-                  'zope.app.testing'],
+          test=['zope.testing',
+                'zope.app.testing'],
           ),
-      include_package_data = True,
+      include_package_data=True,
 
-      zip_safe = False,
+      zip_safe=False,
       )



More information about the Checkins mailing list