[Checkins] SVN: Products.ZCatalog/trunk/setup.py reindent function arguments

Hano Schlichting cvs-admin at zope.org
Sun Feb 24 14:01:47 UTC 2013


Log message for revision 129738:
  reindent function arguments
  

Changed:
  U   Products.ZCatalog/trunk/setup.py

-=-
Modified: Products.ZCatalog/trunk/setup.py
===================================================================
--- Products.ZCatalog/trunk/setup.py	2013-02-24 13:56:08 UTC (rev 129737)
+++ Products.ZCatalog/trunk/setup.py	2013-02-24 14:01:46 UTC (rev 129738)
@@ -14,19 +14,20 @@
 
 from setuptools import setup, find_packages
 
-setup(name='Products.ZCatalog',
-      version='3.0b2',
-      url='http://pypi.python.org/pypi/Products.ZCatalog',
-      license='ZPL 2.1',
-      description="Zope 2's indexing and search solution.",
-      author='Zope Foundation and Contributors',
-      author_email='zope-dev at zope.org',
-      long_description=open('README.txt').read() + '\n' +
-                       open('CHANGES.txt').read(),
-      packages=find_packages('src'),
-      namespace_packages=['Products'],
-      package_dir={'': 'src'},
-      install_requires=[
+setup(
+    name='Products.ZCatalog',
+    version='3.0b2',
+    url='http://pypi.python.org/pypi/Products.ZCatalog',
+    license='ZPL 2.1',
+    description="Zope 2's indexing and search solution.",
+    author='Zope Foundation and Contributors',
+    author_email='zope-dev at zope.org',
+    long_description=open('README.txt').read() + '\n' +
+                     open('CHANGES.txt').read(),
+    packages=find_packages('src'),
+    namespace_packages=['Products'],
+    package_dir={'': 'src'},
+    install_requires=[
         'setuptools',
         'AccessControl',
         'Acquisition',
@@ -45,7 +46,7 @@
         'zope.interface',
         'zope.schema',
         'zope.testing',
-      ],
-      include_package_data=True,
-      zip_safe=False,
-      )
+    ],
+    include_package_data=True,
+    zip_safe=False,
+)



More information about the checkins mailing list