[Checkins] SVN: zope.app.layers/trunk/ Get ready for release.

Stephan Richter srichter at cosmos.phy.tufts.edu
Wed Oct 24 21:48:04 EDT 2007


Log message for revision 81086:
  Get ready for release.
  

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

-=-
Added: zope.app.layers/trunk/CHANGES.txt
===================================================================
--- zope.app.layers/trunk/CHANGES.txt	                        (rev 0)
+++ zope.app.layers/trunk/CHANGES.txt	2007-10-25 01:48:04 UTC (rev 81086)
@@ -0,0 +1,8 @@
+=======
+CHANGES
+=======
+
+3.4.0 (2007-10-24)
+------------------
+
+- Initial release independent of the main Zope tree.


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

Added: zope.app.layers/trunk/README.txt
===================================================================
--- zope.app.layers/trunk/README.txt	                        (rev 0)
+++ zope.app.layers/trunk/README.txt	2007-10-25 01:48:04 UTC (rev 81086)
@@ -0,0 +1 @@
+A meta-package in which generated layer interfaces are placed.


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

Modified: zope.app.layers/trunk/buildout.cfg
===================================================================
--- zope.app.layers/trunk/buildout.cfg	2007-10-25 01:33:35 UTC (rev 81085)
+++ zope.app.layers/trunk/buildout.cfg	2007-10-25 01:48:04 UTC (rev 81086)
@@ -1,5 +1,5 @@
 [buildout]
-develop = . 
+develop = .
 parts = test
 
 [test]

Deleted: zope.app.layers/trunk/setup.cfg
===================================================================
--- zope.app.layers/trunk/setup.cfg	2007-10-25 01:33:35 UTC (rev 81085)
+++ zope.app.layers/trunk/setup.cfg	2007-10-25 01:48:04 UTC (rev 81086)
@@ -1,2 +0,0 @@
-[egg_info]
-tag_svn_revision = 1
\ No newline at end of file

Modified: zope.app.layers/trunk/setup.py
===================================================================
--- zope.app.layers/trunk/setup.py	2007-10-25 01:33:35 UTC (rev 81085)
+++ zope.app.layers/trunk/setup.py	2007-10-25 01:48:04 UTC (rev 81086)
@@ -15,18 +15,35 @@
 
 $Id$
 """
-
 import os
+from setuptools import setup, find_packages
 
-from setuptools import setup, find_packages, Extension
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
 setup(name='zope.app.layers',
-      version = '3.4.0b1',
-      url='http://svn.zope.org/zope.app.layers',
-      license='ZPL 2.1',
-      description='Zope layers',
+      version = '3.4.0',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
+      description='Zope 3 Layer Container Package',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 layers",
+      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.layers',
+      license='ZPL 2.1',
       packages=find_packages('src'),
       package_dir = {'': 'src'},
       namespace_packages=['zope', 'zope.app'],


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




More information about the Checkins mailing list