[Checkins] SVN: zope.pagetemplate/trunk/setup.py pep8

Godefroid Chapelle gotcha at bubblenet.be
Fri Dec 18 05:26:10 EST 2009


Log message for revision 106747:
  pep8

Changed:
  U   zope.pagetemplate/trunk/setup.py

-=-
Modified: zope.pagetemplate/trunk/setup.py
===================================================================
--- zope.pagetemplate/trunk/setup.py	2009-12-18 10:25:03 UTC (rev 106746)
+++ zope.pagetemplate/trunk/setup.py	2009-12-18 10:26:10 UTC (rev 106747)
@@ -23,11 +23,13 @@
 import os
 from setuptools import setup, find_packages
 
+
 def read(*rnames):
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
+
 setup(name='zope.pagetemplate',
-      version = '3.5.1dev',
+      version='3.5.1dev',
       author='Zope Corporation and Contributors',
       author_email='zope-dev at zope.org',
       description='Zope Page Templates',
@@ -41,10 +43,9 @@
           + '\n\n' +
           read('src', 'zope', 'pagetemplate', 'readme.txt')
           + '\n\n' +
-          read('CHANGES.txt')
-          ),
-      keywords = "zope3 page template",
-      classifiers = [
+          read('CHANGES.txt')),
+      keywords="zope3 page template",
+      classifiers=[
           'Development Status :: 5 - Production/Stable',
           'Environment :: Web Environment',
           'Intended Audience :: Developers',
@@ -57,9 +58,9 @@
       url='http://pypi.python.org/pypi/zope.pagetemplate',
       license='ZPL 2.1',
       packages=find_packages('src'),
-      package_dir = {'': 'src'},
+      package_dir={'': 'src'},
       namespace_packages=['zope'],
-      extras_require = dict(
+      extras_require=dict(
           test=['zope.testing',
                 'zope.component',
                 'zope.proxy',
@@ -73,6 +74,6 @@
                         'zope.tales',
                         'zope.tal',
                        ],
-      include_package_data = True,
-      zip_safe = False,
+      include_package_data=True,
+      zip_safe=False,
       )



More information about the checkins mailing list