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

Stephan Richter srichter at cosmos.phy.tufts.edu
Thu Oct 25 12:00:01 EDT 2007


Log message for revision 81102:
  Get ready for release.
  

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

-=-
Added: zope.app.module/trunk/CHANGES.txt
===================================================================
--- zope.app.module/trunk/CHANGES.txt	                        (rev 0)
+++ zope.app.module/trunk/CHANGES.txt	2007-10-25 16:00:00 UTC (rev 81102)
@@ -0,0 +1,8 @@
+=======
+CHANGES
+=======
+
+3.4.0 (2007-10-25)
+------------------
+
+- Initial release independent of the main Zope tree.


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

Added: zope.app.module/trunk/README.txt
===================================================================
--- zope.app.module/trunk/README.txt	                        (rev 0)
+++ zope.app.module/trunk/README.txt	2007-10-25 16:00:00 UTC (rev 81102)
@@ -0,0 +1,7 @@
+Persistent Python modules allow us to develop and store Python modules in the
+ZODB in contrast to storing them on the filesystem. You might want to look at
+the `zodbcode` package for the details of the implementation. In Zope 3 we
+implemented persistent modules as utilities. These utilities are known as
+module managers that manage the source code, compiled module and name of the
+module. We then provide a special module registry that looks up the utilities
+to find modules.


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

Modified: zope.app.module/trunk/buildout.cfg
===================================================================
--- zope.app.module/trunk/buildout.cfg	2007-10-25 15:53:32 UTC (rev 81101)
+++ zope.app.module/trunk/buildout.cfg	2007-10-25 16:00:00 UTC (rev 81102)
@@ -1,7 +1,6 @@
 [buildout]
-develop = . 
+develop = .
 parts = test
-find-links = http://download.zope.org/distribution/
 
 [test]
 recipe = zc.recipe.testrunner

Deleted: zope.app.module/trunk/setup.cfg
===================================================================
--- zope.app.module/trunk/setup.cfg	2007-10-25 15:53:32 UTC (rev 81101)
+++ zope.app.module/trunk/setup.cfg	2007-10-25 16:00:00 UTC (rev 81102)
@@ -1,2 +0,0 @@
-[egg_info]
-tag_svn_revision = 1
\ No newline at end of file

Modified: zope.app.module/trunk/setup.py
===================================================================
--- zope.app.module/trunk/setup.py	2007-10-25 15:53:32 UTC (rev 81101)
+++ zope.app.module/trunk/setup.py	2007-10-25 16:00:00 UTC (rev 81102)
@@ -15,23 +15,47 @@
 
 $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.module',
-      version = '3.4.0b1',
-      url='http://svn.zope.org/zope.app.module',
-      license='ZPL 2.1',
+      version = '3.4.0',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
-	  packages=find_packages('src'),
-	  package_dir = {'': 'src'},
+      description='Zope 3 persistent code/module support',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          'Detailed Dcoumentation\n' +
+          '----------------------\n'
+          + '\n\n' +
+          read('src', 'zope', 'app', 'module', 'README.txt')
+          + '\n\n' +
+          read('src', 'zope', 'app', 'module', 'interfaces.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 code module zodb local",
+      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.module',
+      license='ZPL 2.1',
+      packages=find_packages('src'),
+      package_dir = {'': 'src'},
       namespace_packages=['zope', 'zope.app'],
       extras_require=dict(test=['zope.app.testing',
                                 ]),
-      
       install_requires=['setuptools',
                         'zope.interface',
                         'zope.component',


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




More information about the Checkins mailing list