[Checkins] SVN: zope.app.zapi/trunk/ - prepare for 3.4.0 final release

Baiju M baiju.m.mail at gmail.com
Wed Oct 3 01:15:52 EDT 2007


Log message for revision 80533:
   - prepare for 3.4.0 final release
   - remove setup.cfg
   - add README.txt & CHANGES.txt
  

Changed:
  A   zope.app.zapi/trunk/CHANGES.txt
  A   zope.app.zapi/trunk/README.txt
  D   zope.app.zapi/trunk/setup.cfg
  U   zope.app.zapi/trunk/setup.py

-=-
Added: zope.app.zapi/trunk/CHANGES.txt
===================================================================
--- zope.app.zapi/trunk/CHANGES.txt	                        (rev 0)
+++ zope.app.zapi/trunk/CHANGES.txt	2007-10-03 05:15:51 UTC (rev 80533)
@@ -0,0 +1,8 @@
+Change History
+==============
+
+
+3.4.0 (2007-10-03)
+------------------
+
+Initial public release as an individual package.


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

Added: zope.app.zapi/trunk/README.txt
===================================================================
--- zope.app.zapi/trunk/README.txt	                        (rev 0)
+++ zope.app.zapi/trunk/README.txt	2007-10-03 05:15:51 UTC (rev 80533)
@@ -0,0 +1,4 @@
+Zope application programming interface
+**************************************
+
+.. contents::


Property changes on: zope.app.zapi/trunk/README.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Deleted: zope.app.zapi/trunk/setup.cfg
===================================================================
--- zope.app.zapi/trunk/setup.cfg	2007-10-03 04:10:13 UTC (rev 80532)
+++ zope.app.zapi/trunk/setup.cfg	2007-10-03 05:15:51 UTC (rev 80533)
@@ -1,2 +0,0 @@
-[egg_info]
-tag_svn_revision = 1
\ No newline at end of file

Modified: zope.app.zapi/trunk/setup.py
===================================================================
--- zope.app.zapi/trunk/setup.py	2007-10-03 04:10:13 UTC (rev 80532)
+++ zope.app.zapi/trunk/setup.py	2007-10-03 05:15:51 UTC (rev 80533)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2006 Zope Corporation and Contributors.
+# Copyright (c) 2006,2007 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -20,23 +20,51 @@
 
 from setuptools import setup, find_packages, Extension
 
-setup(name='zope.app.zapi',
-      version = '3.4.0b1',
-      url='http://svn.zope.org/zope.app.zapi',
-      license='ZPL 2.1',
-      author='Zope Corporation and Contributors',
-      author_email='zope3-dev at zope.org',
-	  packages=find_packages('src'),
-	  package_dir = {'': 'src'},
-      namespace_packages=['zope',],
-      extras_require=dict(test=['zope.app.testing']),
-      install_requires=['setuptools',
-                        'zope.interface',
-                        'zope.component',
-                        'zope.traversing',
-                        'zope.app.publisher',
-                        'zope.app.interface'
-                        ],
-      include_package_data = True,
-      zip_safe = False,
-      )
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
+long_description = (
+    read('README.txt')
+    + '\n' +
+    read('CHANGES.txt')
+    + '\n' +
+    read('src', 'zope', 'app', 'zapi', 'README.txt')
+    + '\n' +
+    'Download\n'
+    '========'
+    )
+
+setup(
+    name='zope.app.zapi',
+    version='3.4.0',
+    url='http://pypi.python.org/pypi/zope.app.zapi',
+    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',
+        'Framework :: Zope3',
+        ],
+    description='Zope application programming interface',
+    long_description=long_description,
+
+    packages=find_packages('src'),
+    package_dir={'': 'src'},
+    namespace_packages=['zope', 'zope.app'],
+    include_package_data=True,
+    install_requires=['setuptools',
+                      'zope.interface',
+                      'zope.component',
+                      'zope.traversing',
+                      'zope.app.publisher',
+                      'zope.app.interface'
+                      ],
+    extras_require=dict(test=['zope.app.testing']),
+    zip_safe=False,
+    )



More information about the Checkins mailing list