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

Stephan Richter srichter at cosmos.phy.tufts.edu
Wed Oct 24 11:45:08 EDT 2007


Log message for revision 81043:
  Get ready for release.
  

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

-=-
Added: zope.app.generations/trunk/CHANGES.txt
===================================================================
--- zope.app.generations/trunk/CHANGES.txt	                        (rev 0)
+++ zope.app.generations/trunk/CHANGES.txt	2007-10-24 15:45:08 UTC (rev 81043)
@@ -0,0 +1,8 @@
+=======
+CHANGES
+=======
+
+3.4.0 (2007-10-24)
+------------------
+
+- Initial release independent of the main Zope tree.


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

Added: zope.app.generations/trunk/README.txt
===================================================================
--- zope.app.generations/trunk/README.txt	                        (rev 0)
+++ zope.app.generations/trunk/README.txt	2007-10-24 15:45:08 UTC (rev 81043)
@@ -0,0 +1,4 @@
+Generations are a way of updating objects in the database when the application
+schema changes.  An application schema is essentially the structure of data,
+the structure of classes in the case of ZODB or the table descriptions in the
+case of a relational database.


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

Modified: zope.app.generations/trunk/buildout.cfg
===================================================================
--- zope.app.generations/trunk/buildout.cfg	2007-10-24 15:33:29 UTC (rev 81042)
+++ zope.app.generations/trunk/buildout.cfg	2007-10-24 15:45:08 UTC (rev 81043)
@@ -1,7 +1,6 @@
 [buildout]
-develop = . 
+develop = .
 parts = test
-find-links = http://download.zope.org/distribution/
 
 [test]
 recipe = zc.recipe.testrunner

Deleted: zope.app.generations/trunk/setup.cfg
===================================================================
--- zope.app.generations/trunk/setup.cfg	2007-10-24 15:33:29 UTC (rev 81042)
+++ zope.app.generations/trunk/setup.cfg	2007-10-24 15:45:08 UTC (rev 81043)
@@ -1,2 +0,0 @@
-[egg_info]
-tag_svn_revision = 1
\ No newline at end of file

Modified: zope.app.generations/trunk/setup.py
===================================================================
--- zope.app.generations/trunk/setup.py	2007-10-24 15:33:29 UTC (rev 81042)
+++ zope.app.generations/trunk/setup.py	2007-10-24 15:45:08 UTC (rev 81043)
@@ -15,18 +15,40 @@
 
 $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.generations',
-      version = '3.4.0b1',
-      url='http://svn.zope.org/zope.app.generations',
-      license='ZPL 2.1',
-      description='Zope generations',
+      version = '3.4.0',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
+      description='Zope Application Schema Generations',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          'Detailed Documentation\n'
+          '======================\n'
+          + '\n\n' +
+          read('src', 'zope', 'app', 'generations', 'README.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 zodb schema generation",
+      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.generations',
+      license='ZPL 2.1',
       packages=find_packages('src'),
       package_dir = {'': 'src'},
       namespace_packages=['zope', 'zope.app'],


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


Modified: zope.app.generations/trunk/src/zope/app/generations/README.txt
===================================================================
--- zope.app.generations/trunk/src/zope/app/generations/README.txt	2007-10-24 15:33:29 UTC (rev 81042)
+++ zope.app.generations/trunk/src/zope/app/generations/README.txt	2007-10-24 15:45:08 UTC (rev 81043)
@@ -1,3 +1,4 @@
+===================================
 A quick introduction to generations
 ===================================
 



More information about the Checkins mailing list