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

Baiju M baiju.m.mail at gmail.com
Wed Oct 3 02:56:55 EDT 2007


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

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

-=-
Added: zope.app.zptpage/trunk/CHANGES.txt
===================================================================
--- zope.app.zptpage/trunk/CHANGES.txt	                        (rev 0)
+++ zope.app.zptpage/trunk/CHANGES.txt	2007-10-03 06:56:54 UTC (rev 80539)
@@ -0,0 +1,9 @@
+Change History
+==============
+
+
+3.4.0 (2007-10-03)
+------------------
+
+Initial public release as an individual package.
+


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

Added: zope.app.zptpage/trunk/README.txt
===================================================================
--- zope.app.zptpage/trunk/README.txt	                        (rev 0)
+++ zope.app.zptpage/trunk/README.txt	2007-10-03 06:56:54 UTC (rev 80539)
@@ -0,0 +1,4 @@
+ZPT page content component
+**************************
+
+.. contents::


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

Deleted: zope.app.zptpage/trunk/setup.cfg
===================================================================
--- zope.app.zptpage/trunk/setup.cfg	2007-10-03 06:38:03 UTC (rev 80538)
+++ zope.app.zptpage/trunk/setup.cfg	2007-10-03 06:56:54 UTC (rev 80539)
@@ -1,2 +0,0 @@
-[egg_info]
-tag_svn_revision = 1
\ No newline at end of file

Modified: zope.app.zptpage/trunk/setup.py
===================================================================
--- zope.app.zptpage/trunk/setup.py	2007-10-03 06:38:03 UTC (rev 80538)
+++ zope.app.zptpage/trunk/setup.py	2007-10-03 06:56:54 UTC (rev 80539)
@@ -20,36 +20,61 @@
 
 from setuptools import setup, find_packages, Extension
 
-setup(name='zope.app.zptpage',
-      version = '3.4.0b1',
-      url='http://svn.zope.org/zope.app.zptpage',
-      license='ZPL 2.1',
-      description='Zope zptpage',
-      author='Zope Corporation and Contributors',
-      author_email='zope3-dev at zope.org',
-      packages=find_packages('src'),
-      package_dir = {'': 'src'},
-      namespace_packages=['zope', 'zope.app'],
-      extras_require = dict(test=['zope.app.testing',
-                                  'zope.app.securitypolicy',
-                                  'zope.app.zcmlfiles']),
-      install_requires=['setuptools',
-                        'zope.app.container',
-                        'zope.app.pagetemplate',
-                        'zope.app.publication',
-                        'zope.filerepresentation',
-                        'zope.formlib',
-                        'zope.i18nmessageid',
-                        'zope.index',
-                        'zope.interface',
-                        'zope.pagetemplate',
-                        'zope.publisher',
-                        'zope.schema',
-                        'zope.security',
-                        'zope.size',
-                        'zope.traversing',
-                        'ZODB3',
-                        ],
-      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' +
+    'Download\n'
+    '========'
+    )
+
+setup(
+    name='zope.app.zptpage',
+    version='3.4.0',
+    url='http://pypi.python.org/pypi/zope.app.zptpage',
+    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='ZPT page content component',
+    long_description=long_description,
+
+    packages=find_packages('src'),
+    package_dir={'': 'src'},
+    namespace_packages=['zope', 'zope.app'],
+    include_package_data=True,
+    install_requires=['setuptools',
+                      'zope.app.container',
+                      'zope.app.pagetemplate',
+                      'zope.app.publication',
+                      'zope.filerepresentation',
+                      'zope.formlib',
+                      'zope.i18nmessageid',
+                      'zope.index',
+                      'zope.interface',
+                      'zope.pagetemplate',
+                      'zope.publisher',
+                      'zope.schema',
+                      'zope.security',
+                      'zope.size',
+                      'zope.traversing',
+                      'ZODB3',
+                      ],
+    extras_require=dict(test=['zope.app.testing',
+                              'zope.app.securitypolicy',
+                              'zope.app.zcmlfiles']),
+    zip_safe=False,
+    )



More information about the Checkins mailing list