[Checkins] SVN: zope.app.publication/trunk/ Prepare for 3.4 egg

Roger Ineichen roger at projekt01.ch
Mon Sep 24 21:45:08 EDT 2007


Log message for revision 79983:
  Prepare for 3.4 egg

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

-=-
Added: zope.app.publication/trunk/CHANGES.txt
===================================================================
--- zope.app.publication/trunk/CHANGES.txt	                        (rev 0)
+++ zope.app.publication/trunk/CHANGES.txt	2007-09-25 01:45:07 UTC (rev 79983)
@@ -0,0 +1,11 @@
+=======
+CHANGES
+=======
+
+
+Version 3.4.0 (2007/9/25)
+-------------------------
+
+- Initial documented release
+
+- Reflect changes form zope.app.error refactoring


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

Added: zope.app.publication/trunk/README.txt
===================================================================
--- zope.app.publication/trunk/README.txt	                        (rev 0)
+++ zope.app.publication/trunk/README.txt	2007-09-25 01:45:07 UTC (rev 79983)
@@ -0,0 +1 @@
+Publication and traversal components.
\ No newline at end of file


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

Deleted: zope.app.publication/trunk/setup.cfg
===================================================================
--- zope.app.publication/trunk/setup.cfg	2007-09-25 01:44:33 UTC (rev 79982)
+++ zope.app.publication/trunk/setup.cfg	2007-09-25 01:45:07 UTC (rev 79983)
@@ -1,2 +0,0 @@
-[egg_info]
-tag_svn_revision = 1
\ No newline at end of file

Modified: zope.app.publication/trunk/setup.py
===================================================================
--- zope.app.publication/trunk/setup.py	2007-09-25 01:44:33 UTC (rev 79982)
+++ zope.app.publication/trunk/setup.py	2007-09-25 01:45:07 UTC (rev 79983)
@@ -18,35 +18,55 @@
 
 import os
 
-from setuptools import setup, find_packages, Extension
+from setuptools import setup, find_packages
 
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
 setup(name='zope.app.publication',
-      version = '3.4.0b1',
-      url='http://svn.zope.org/zope.app.publication',
-      license='ZPL 2.1',
-      description='Zope publication',
-      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',
-                                  'zope.app.dav',
-                                  'zope.app.zptpage',
-                                  ]),
-      install_requires=['zope.interface',
-                        'ZODB3',
-                        'zope.component',
-                        'zope.i18n',
-                        'zope.app.http',
-                        'zope.app.applicationcontrol',
-                        'zope.app.error',
-                        'zope.app.exception',
-                        'zope.app.security',
-                        'setuptools',
-                        ],
-      include_package_data = True,
-      zip_safe = False,
-      )
+    version = '3.4.0',
+    author='Zope Corporation and Contributors',
+    author_email='zope3-dev at zope.org',
+    description='Zope publication',
+    long_description=(
+        read('README.txt')
+        + '\n\n' +
+        read('CHANGES.txt')
+        ),
+    license='ZPL 2.1',
+    keywords = "zope3 publication",
+    classifiers = [
+        'Development Status :: 5 - Production/Stable',
+        'Environment :: Web Environment',
+        'Intended Audience :: Developers',
+        'License :: OSI Approved :: Zope Public License',
+        'Programming Language :: Python',
+        'Natural Language :: English',
+        'Operating System :: OS Independent',
+        'Topic :: Internet :: WWW/HTTP',
+        'Framework :: Zope3'],
+    url='http://cheeseshop.python.org/pypi/zope.app.publication',
+    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',
+              'zope.app.dav',
+              'zope.app.zptpage',
+              ]),
+    install_requires=['zope.interface',
+                      'ZODB3',
+                      'zope.component',
+                      'zope.i18n',
+                      'zope.app.http',
+                      'zope.app.applicationcontrol',
+                      'zope.app.error',
+                      'zope.app.exception',
+                      'zope.app.security',
+                      'setuptools',
+                      ],
+    include_package_data = True,
+    zip_safe = False,
+    )


Property changes on: zope.app.publication/trunk/src
___________________________________________________________________
Name: svn:ignore
   + zope.app.publication.egg-info




More information about the Checkins mailing list