[Checkins] SVN: zope.lifecycleevent/trunk/ Prepare for 3.4.0 final release

Baiju M baiju.m.mail at gmail.com
Sat Sep 1 08:15:10 EDT 2007


Log message for revision 79412:
  Prepare for 3.4.0 final release
  

Changed:
  _U  zope.lifecycleevent/trunk/
  A   zope.lifecycleevent/trunk/CHANGES.txt
  U   zope.lifecycleevent/trunk/README.txt
  U   zope.lifecycleevent/trunk/setup.py

-=-

Property changes on: zope.lifecycleevent/trunk
___________________________________________________________________
Name: svn:ignore
   - bin
build
dist
lib
setup.cfg

   + bin
build
develop-eggs
dist
eggs
lib
parts
.installed.cfg


Added: zope.lifecycleevent/trunk/CHANGES.txt
===================================================================
--- zope.lifecycleevent/trunk/CHANGES.txt	                        (rev 0)
+++ zope.lifecycleevent/trunk/CHANGES.txt	2007-09-01 12:15:09 UTC (rev 79412)
@@ -0,0 +1,8 @@
+Change History
+==============
+
+
+3.4.0 (2007-09-01)
+------------------
+
+Initial release as an independent package


Property changes on: zope.lifecycleevent/trunk/CHANGES.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: zope.lifecycleevent/trunk/README.txt
===================================================================
--- zope.lifecycleevent/trunk/README.txt	2007-09-01 03:24:21 UTC (rev 79411)
+++ zope.lifecycleevent/trunk/README.txt	2007-09-01 12:15:09 UTC (rev 79412)
@@ -1,13 +1,13 @@
-zope.lifecycleevent Package Readme
-==================================
+zope.lifecycleevent
+*******************
 
+.. contents::
+
 Overview
---------
+========
 
 In Zope 3, events are used by components to inform each other about
 relevant new objects and object modifications.
 
 To keep all subscribers up to date it is indispensable that the life
 cycle of an object is accompanied by various events.
-
-For more details, see src/zope/lifecycleevent/README.txt

Modified: zope.lifecycleevent/trunk/setup.py
===================================================================
--- zope.lifecycleevent/trunk/setup.py	2007-09-01 03:24:21 UTC (rev 79411)
+++ zope.lifecycleevent/trunk/setup.py	2007-09-01 12:15:09 UTC (rev 79412)
@@ -20,33 +20,54 @@
 
 from setuptools import setup, find_packages
 
-setup(name='zope.lifecycleevent',
-      version = '3.4.0b1',
-      url='http://svn.zope.org/zope.lifecycleevent',
-      license='ZPL 2.1',
-      description='Zope lifecycleevent',
-      author='Zope Corporation and Contributors',
-      author_email='zope3-dev at zope.org',
-      long_description="In Zope 3, events are used by components"
-                        "to inform each other about relevant new"
-                        "objects and object modifications.",
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-      packages=find_packages('src'),
-      package_dir = {'': 'src'},
+long_description = (
+    read('README.txt')
+    + '\n' +
+    read('CHANGES.txt')
+    + '\n' +
+    'Detailed Documentation\n'
+    '**********************\n'
+    + '\n' +
+    read('src', 'zope', 'lifecycleevent', 'README.txt')
+    + '\n' +
+    'Download\n'
+    '********\n'
+    )
 
-      namespace_packages=['zope',],
-      tests_require = ['zope.testing'],
-      install_requires=['setuptools',
-                        'zope.interface',
-                        'zope.component',
-                        'zope.deferredimport',
-                        'zope.event'],
-      include_package_data = True,
+setup(
+    name='zope.lifecycleevent',
+    version='3.4.0',
+    url='http://pypi.python.org/pypi/zope.lifecycleevent',
+    author='Zope Corporation and Contributors',
+    author_email='zope3-dev at zope.org',
+    license='ZPL 2.1',
+    classifiers=[
+        'Development Status :: 5 - Production/Stable',
+        'Intended Audience :: Developers',
+        'License :: OSI Approved :: Zope Public License',
+        'Programming Language :: Python',
+        'Operating System :: OS Independent',
+        'Topic :: Internet :: WWW/HTTP',
+        'Topic :: Software Development',
+        ],
+    description='Life-cycle events',
+    long_description=long_description,
 
-      zip_safe = False,
-      extras_require = dict(
+    packages=find_packages('src'),
+    package_dir={'': 'src'},
+    namespace_packages=['zope',],
+    include_package_data=True,
+    install_requires=['setuptools',
+                      'zope.interface',
+                      'zope.component',
+                      'zope.deferredimport',
+                      'zope.event'],
+    extras_require=dict(
         test = ['zope.annotation',
-                'zope.app.container',
-               ]
-        )
-      )
+                'zope.app.container',]
+        ),
+    zip_safe=False,
+    )



More information about the Checkins mailing list