[Checkins] SVN: zope.app.versioncontrol/trunk/ released egg to PyPI

Roy Mathew roymath at yahoo.com
Fri Jul 24 13:40:13 EDT 2009


Log message for revision 102266:
  released egg to PyPI

Changed:
  A   zope.app.versioncontrol/trunk/CHANGES.txt
  A   zope.app.versioncontrol/trunk/README.txt
  U   zope.app.versioncontrol/trunk/setup.py

-=-
Added: zope.app.versioncontrol/trunk/CHANGES.txt
===================================================================
--- zope.app.versioncontrol/trunk/CHANGES.txt	                        (rev 0)
+++ zope.app.versioncontrol/trunk/CHANGES.txt	2009-07-24 17:40:12 UTC (rev 102266)
@@ -0,0 +1,13 @@
+=======
+CHANGES
+=======
+
+Version 0.2 (unreleased)
+--------------------------
+
+- add notes here
+
+Version 0.1 (2009-07-24)
+--------------------------
+
+- Initial Release as an egg.

Added: zope.app.versioncontrol/trunk/README.txt
===================================================================
--- zope.app.versioncontrol/trunk/README.txt	                        (rev 0)
+++ zope.app.versioncontrol/trunk/README.txt	2009-07-24 17:40:12 UTC (rev 102266)
@@ -0,0 +1,3 @@
+This package provides a framework for managing multiple versions of objects
+within a ZODB database.
+

Modified: zope.app.versioncontrol/trunk/setup.py
===================================================================
--- zope.app.versioncontrol/trunk/setup.py	2009-07-24 17:38:04 UTC (rev 102265)
+++ zope.app.versioncontrol/trunk/setup.py	2009-07-24 17:40:12 UTC (rev 102266)
@@ -1,19 +1,58 @@
+##############################################################################
+#
+# Copyright (c) 2007 Zope Foundation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+"""Setup
+
+$Id$
+"""
 from setuptools import setup, find_packages
 
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
 setup(
     name = 'zope.app.versioncontrol',
-    version = '0.1',
+    version = '0.2dev',
     author = 'Jim Fulton',
     author_email = 'jim at zope.com',
-    description = '',
+    description = 'a framework for managing multiple versions of objects within a ZODB database.',
+    long_description=(
+        read('README.txt')
+        + '\n\n' +
+        'Detailed Documentation\n'
+        '**********************\n\n' +
+        read('CHANGES.txt')
+        ),
     license = 'ZPL 2.1',
+    keywords = "zope3 zodb versions",
+    classifiers = [
+        'Development Status :: 4 - Beta',
+        '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://pypi.python.org/pypi/zope.app.versioncontrol',
     packages = find_packages('src'),
     namespace_packages = ['zope', 'zope.app'],
     package_dir = {'': 'src'},
     extras_require=dict(test=['zope.event',
                               'zope.traversing',
-                              'zope.annotation>=3.4.0b1.dev-r75055', 
+                              'zope.annotation',
                               'zope.component']),
     install_requires = ['setuptools',
                         'ZODB3',



More information about the Checkins mailing list