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

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


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

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

-=-
Added: zope.app.zcmlfiles/trunk/CHANGES.txt
===================================================================
--- zope.app.zcmlfiles/trunk/CHANGES.txt	                        (rev 0)
+++ zope.app.zcmlfiles/trunk/CHANGES.txt	2007-10-03 06:26:11 UTC (rev 80536)
@@ -0,0 +1,8 @@
+Change History
+==============
+
+
+3.4.0 (2007-10-03)
+------------------
+
+Initial public release as an individual package.


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

Added: zope.app.zcmlfiles/trunk/README.txt
===================================================================
--- zope.app.zcmlfiles/trunk/README.txt	                        (rev 0)
+++ zope.app.zcmlfiles/trunk/README.txt	2007-10-03 06:26:11 UTC (rev 80536)
@@ -0,0 +1,5 @@
+Zope application server ZCML files
+**********************************
+
+.. contents::
+


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

Modified: zope.app.zcmlfiles/trunk/buildout.cfg
===================================================================
--- zope.app.zcmlfiles/trunk/buildout.cfg	2007-10-03 05:29:18 UTC (rev 80535)
+++ zope.app.zcmlfiles/trunk/buildout.cfg	2007-10-03 06:26:11 UTC (rev 80536)
@@ -5,5 +5,5 @@
 
 [test]
 recipe = zc.recipe.testrunner
-eggs = zope.app.zcmlfiles # [test]
+eggs = zope.app.zcmlfiles
 

Deleted: zope.app.zcmlfiles/trunk/setup.cfg
===================================================================
--- zope.app.zcmlfiles/trunk/setup.cfg	2007-10-03 05:29:18 UTC (rev 80535)
+++ zope.app.zcmlfiles/trunk/setup.cfg	2007-10-03 06:26:11 UTC (rev 80536)
@@ -1,2 +0,0 @@
-[egg_info]
-tag_svn_revision = 1
\ No newline at end of file

Modified: zope.app.zcmlfiles/trunk/setup.py
===================================================================
--- zope.app.zcmlfiles/trunk/setup.py	2007-10-03 05:29:18 UTC (rev 80535)
+++ zope.app.zcmlfiles/trunk/setup.py	2007-10-03 06:26:11 UTC (rev 80536)
@@ -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,43 +20,66 @@
 
 from setuptools import setup, find_packages, Extension
 
-setup(name='zope.app.zcmlfiles',
-      version = '3.4.0b1',
-      url='http://svn.zope.org/zope.app.zcmlfiles',
-      license='ZPL 2.1',
-      description='Zope zcmlfiles',
-      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',
-                                ]),
-      install_requires=['setuptools',
-                        'zope.modulealias',
-                        'zope.component',
-                        'zope.annotation>=3.4.0a1',
-                        'zope.app.dependable',
-                        'zope.app.content',
-                        'zope.publisher',
-                        'zope.app.component',
-                        'zope.app.generations',
-                        'zope.app.interface',
-                        'zope.app.publisher',
-                        'zope.app.security',
-                        'zope.app.form',
-                        'zope.app.locales',
-                        'zope.app.zopeappgenerations',
-                        'zope.app.principalannotation',
-                        'zope.app.basicskin',
-                        'zope.app.rotterdam',
-                        'zope.app.wsgi',
-                        'zope.formlib>=3.4.0a1',
-                        'zope.i18n',
-                        'zope.app.pagetemplate',
-                        'zope.app.schema',
-                        'zope.app.container',
-                        ],
-      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.zcmlfiles',
+    version='3.4.0',
+    url='http://pypi.python.org/pypi/zope.app.zcmlfiles',
+    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 server ZCML files',
+    long_description=long_description,
+
+    packages=find_packages('src'),
+    package_dir={'': 'src'},
+    namespace_packages=['zope', 'zope.app'],
+    include_package_data=True,
+    install_requires=['setuptools',
+                      'zope.modulealias',
+                      'zope.component',
+                      'zope.annotation',
+                      'zope.app.dependable',
+                      'zope.app.content',
+                      'zope.publisher',
+                      'zope.app.component',
+                      'zope.app.generations',
+                      'zope.app.interface',
+                      'zope.app.publisher',
+                      'zope.app.security',
+                      'zope.app.form',
+                      'zope.app.locales',
+                      'zope.app.zopeappgenerations',
+                      'zope.app.principalannotation',
+                      'zope.app.basicskin',
+                      'zope.app.rotterdam',
+                      'zope.app.wsgi',
+                      'zope.formlib',
+                      'zope.i18n',
+                      'zope.app.pagetemplate',
+                      'zope.app.schema',
+                      'zope.app.container',
+                      ],
+    zip_safe=False,
+    )



More information about the Checkins mailing list