[Checkins] SVN: zope.configuration/trunk/ Get ready for 3.4.0 release.

Stephan Richter srichter at cosmos.phy.tufts.edu
Tue Oct 2 01:05:00 EDT 2007


Log message for revision 80461:
  Get ready for 3.4.0 release.
  

Changed:
  U   zope.configuration/trunk/CHANGES.txt
  U   zope.configuration/trunk/README.txt
  U   zope.configuration/trunk/buildout.cfg
  U   zope.configuration/trunk/setup.py

-=-
Modified: zope.configuration/trunk/CHANGES.txt
===================================================================
--- zope.configuration/trunk/CHANGES.txt	2007-10-02 04:48:16 UTC (rev 80460)
+++ zope.configuration/trunk/CHANGES.txt	2007-10-02 05:04:59 UTC (rev 80461)
@@ -2,13 +2,13 @@
 Changes
 =======
 
-3.5.0a1
-=======
+3.4.0 (2007-10-02)
+------------------
 
-...
+- Initial release as a standalone package.
 
-Before 3.5
-==========
+Before 3.4.0
+------------
 
 This package was part of the Zope 3 distribution and did not have its own
 CHANGES.txt. For earlier changes please refer to either our subversion log or

Modified: zope.configuration/trunk/README.txt
===================================================================
--- zope.configuration/trunk/README.txt	2007-10-02 04:48:16 UTC (rev 80460)
+++ zope.configuration/trunk/README.txt	2007-10-02 05:04:59 UTC (rev 80461)
@@ -11,5 +11,3 @@
 configuration system provide configuration directives in some
 language that express configuration choices. The intent is that the
 language be pluggable.  An XML language is provided by default.
-
-See 'src/zope/configuration/README.txt' for more information.

Modified: zope.configuration/trunk/buildout.cfg
===================================================================
--- zope.configuration/trunk/buildout.cfg	2007-10-02 04:48:16 UTC (rev 80460)
+++ zope.configuration/trunk/buildout.cfg	2007-10-02 05:04:59 UTC (rev 80461)
@@ -1,5 +1,5 @@
 [buildout]
-develop = . 
+develop = .
 parts = test
 
 [test]

Modified: zope.configuration/trunk/setup.py
===================================================================
--- zope.configuration/trunk/setup.py	2007-10-02 04:48:16 UTC (rev 80460)
+++ zope.configuration/trunk/setup.py	2007-10-02 05:04:59 UTC (rev 80461)
@@ -15,23 +15,45 @@
 
 $Id$
 """
-
 import os
-
 from setuptools import setup, find_packages
 
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
 setup(name='zope.configuration',
-      version = '3.5.0a1',
-      url='http://svn.zope.org/zope.configuration',
+      version = '3.4.0',
+      author='Zope Corporation and Contributors',
+      author_email='zope3-dev at zope.org',
+      description='Zope Configuration Markup Language (ZCML)',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          'Detailed Documentation\n' +
+          '----------------------\n'
+          + '\n\n' +
+          read('src', 'zope', 'configuration', 'README.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 configuration zcml",
+      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.configuration',
       license='ZPL 2.1',
-      description=open("README.txt").read(),
-      long_description=open("src/zope/configuration/README.txt").read(),
-      author='Zope Project',
-      author_email='zope3-dev at zope.org',
       packages=find_packages('src'),
       package_dir = {'': 'src'},
       namespace_packages=['zope'],
-      #tests_require = ['zope.testing'],
+      extras_require = dict(
+          test=['zope.testing']),
       install_requires=['zope.deprecation',
                         'zope.i18nmessageid',
                         'zope.interface',
@@ -40,5 +62,4 @@
                        ],
       include_package_data = True,
       zip_safe = False,
-      keywords="zope zope3 configuration",
       )



More information about the Checkins mailing list