[Checkins] SVN: z3c.batching/trunk/setup.py update version for new feature; pep8

Godefroid Chapelle gotcha at bubblenet.be
Fri Aug 20 04:09:47 EDT 2010


Log message for revision 115821:
  update version for new feature; pep8

Changed:
  U   z3c.batching/trunk/setup.py

-=-
Modified: z3c.batching/trunk/setup.py
===================================================================
--- z3c.batching/trunk/setup.py	2010-08-20 08:09:21 UTC (rev 115820)
+++ z3c.batching/trunk/setup.py	2010-08-20 08:09:47 UTC (rev 115821)
@@ -18,11 +18,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='z3c.batching',
-      version = '1.1.1dev',
+      version='1.2.0dev',
       author='Zope Corporation and Contributors',
       author_email='zope-dev at zope.org',
       description='Batching',
@@ -35,10 +37,9 @@
           + '\n\n'
           + read('src', 'z3c', 'batching', 'README.txt')
           + '\n\n'
-          + read('CHANGES.txt')
-          ),
-      keywords = "zope3 batching",
-      classifiers = [
+          + read('CHANGES.txt')),
+      keywords="zope3 batching",
+      classifiers=[
           'Development Status :: 5 - Production/Stable',
           'Environment :: Web Environment',
           'Intended Audience :: Developers',
@@ -51,12 +52,12 @@
       url='http://pypi.python.org/pypi/z3c.batching',
       license='ZPL 2.1',
       packages=find_packages('src'),
-      package_dir = {'': 'src'},
+      package_dir={'': 'src'},
       namespace_packages=['z3c'],
-      install_requires = ['setuptools',
+      install_requires=['setuptools',
                           'zope.interface',
                           'zope.schema',
                           ],
-      include_package_data = True,
-      zip_safe = False,
+      include_package_data=True,
+      zip_safe=False,
       )



More information about the checkins mailing list