[Checkins] SVN: zope.cachedescriptors/trunk/ prepare for 3.4.0 release

Baiju M baiju.m.mail at gmail.com
Thu Aug 30 09:11:13 EDT 2007


Log message for revision 79377:
  prepare for 3.4.0 release
  

Changed:
  A   zope.cachedescriptors/trunk/CHANGES.txt
  A   zope.cachedescriptors/trunk/README.txt
  U   zope.cachedescriptors/trunk/setup.py
  U   zope.cachedescriptors/trunk/src/zope/cachedescriptors/README.txt
  U   zope.cachedescriptors/trunk/src/zope/cachedescriptors/method.txt

-=-
Added: zope.cachedescriptors/trunk/CHANGES.txt
===================================================================
--- zope.cachedescriptors/trunk/CHANGES.txt	                        (rev 0)
+++ zope.cachedescriptors/trunk/CHANGES.txt	2007-08-30 13:11:13 UTC (rev 79377)
@@ -0,0 +1,8 @@
+Changes for zope.cachedescriptors
+=================================
+
+
+3.4.0 (2007-08-30)
+------------------
+
+Initial release as an independent package


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

Added: zope.cachedescriptors/trunk/README.txt
===================================================================
--- zope.cachedescriptors/trunk/README.txt	                        (rev 0)
+++ zope.cachedescriptors/trunk/README.txt	2007-08-30 13:11:13 UTC (rev 79377)
@@ -0,0 +1,4 @@
+Cached Descriptors
+******************
+
+.. contents::


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

Modified: zope.cachedescriptors/trunk/setup.py
===================================================================
--- zope.cachedescriptors/trunk/setup.py	2007-08-30 12:46:29 UTC (rev 79376)
+++ zope.cachedescriptors/trunk/setup.py	2007-08-30 13:11:13 UTC (rev 79377)
@@ -20,26 +20,48 @@
 
 from setuptools import setup, find_packages
 
-setup(name='zope.cachedescriptors',
-      version='3.4.0b1',
-      url='http://svn.zope.org/zope.cachedescriptors',
-      license='ZPL 2.1',
-      description='Zope3 Cached Descriptors',
-      author='Zope Corporation and Contributors',
-      author_email='zope3-dev at zope.org',
-      long_description='Cached descriptors cache their output.  They take '
-                       'into account instance attributes that they depend on, '
-                       'so when the instance attributes change, the '
-                       'descriptors will change the values they return.',
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-      packages=find_packages('src'),
-      package_dir = {'': 'src'},
+long_description = (
+    read('README.txt')
+    + '\n' +
+    read('CHANGES.txt')
+    + '\n' +
+    'Detailed Documentation\n'
+    '**********************\n'
+    + '\n' +
+    read('src', 'zope', 'cachedescriptors', 'README.txt')
+    + '\n' +
+    read('src', 'zope', 'cachedescriptors', 'property.txt')
+    + '\n' +
+    read('src', 'zope', 'cachedescriptors', 'method.txt')
+    )
 
-      namespace_packages=['zope',],
-      tests_require = ['zope.testing'],
-      install_requires=['setuptools',
-                        'ZODB3'],    # persistent
-      include_package_data = True,
+setup(
+    name='zope.cachedescriptors',
+    version='3.4.0',
+    url='http://pypi.python.org/pypi/zope.cachedescriptors',
+    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',
+        ],
+    description='Zope3 Cached Descriptors',
+    long_description=long_description,
 
-      zip_safe = False
-      )
+    packages=find_packages('src'),
+    package_dir={'': 'src'},
+    namespace_packages=['zope',],
+    include_package_data=True,
+    install_requires=['setuptools',
+                      'ZODB3'], # persistent
+    zip_safe=False,
+    )

Modified: zope.cachedescriptors/trunk/src/zope/cachedescriptors/README.txt
===================================================================
--- zope.cachedescriptors/trunk/src/zope/cachedescriptors/README.txt	2007-08-30 12:46:29 UTC (rev 79376)
+++ zope.cachedescriptors/trunk/src/zope/cachedescriptors/README.txt	2007-08-30 13:11:13 UTC (rev 79377)
@@ -1,4 +1,5 @@
 Cached descriptors
+==================
 
 Cached descriptors cache their output.  They take into account
 instance attributes that they depend on, so when the instance

Modified: zope.cachedescriptors/trunk/src/zope/cachedescriptors/method.txt
===================================================================
--- zope.cachedescriptors/trunk/src/zope/cachedescriptors/method.txt	2007-08-30 12:46:29 UTC (rev 79376)
+++ zope.cachedescriptors/trunk/src/zope/cachedescriptors/method.txt	2007-08-30 13:11:13 UTC (rev 79377)
@@ -1,11 +1,8 @@
-============
 Method Cache
 ============
 
-
-
 cachedIn
-========
+--------
 
 The `cachedIn` property allows to specify the attribute where to store the
 computed value::



More information about the Checkins mailing list