[Checkins] SVN: zope.event/trunk/setup.py - bump version for final release

Fred L. Drake, Jr. fdrake at gmail.com
Sat Jul 14 13:23:16 EDT 2007


Log message for revision 77960:
  - bump version for final release
  - make whitespace patterns more consistent with typical practice
  

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

-=-
Modified: zope.event/trunk/setup.py
===================================================================
--- zope.event/trunk/setup.py	2007-07-14 17:18:06 UTC (rev 77959)
+++ zope.event/trunk/setup.py	2007-07-14 17:23:15 UTC (rev 77960)
@@ -19,13 +19,15 @@
 import os
 from setuptools import setup, find_packages
 
+
 def read(*rnames):
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-name='zope.event'
+name = 'zope.event'
+
 setup(
     name=name,
-    version = '3.4.0b1',
+    version='3.4.0',
     url='http://www.python.org/pypi/'+name,
     license='ZPL 2.1',
     description='Zope Event Publication',
@@ -42,11 +44,10 @@
         'Download\n'
         '**********************\n'
         ),
-      
       packages=find_packages('src'),
-      package_dir = {'': 'src'},
+      package_dir={'': 'src'},
       namespace_packages=['zope',],
-      include_package_data = True,
+      include_package_data=True,
       install_requires=['setuptools'],
-      zip_safe = False,
+      zip_safe=False,
       )



More information about the Checkins mailing list