[Checkins] SVN: z3c.optionstorage/trunk/ Get ready for release.

Stephan Richter srichter at cosmos.phy.tufts.edu
Sat Nov 3 01:51:06 EDT 2007


Log message for revision 81425:
  Get ready for release.
  

Changed:
  A   z3c.optionstorage/trunk/CHANGES.txt
  D   z3c.optionstorage/trunk/MANIFEST.in
  A   z3c.optionstorage/trunk/README.txt
  U   z3c.optionstorage/trunk/buildout.cfg
  U   z3c.optionstorage/trunk/setup.py

-=-
Added: z3c.optionstorage/trunk/CHANGES.txt
===================================================================
--- z3c.optionstorage/trunk/CHANGES.txt	                        (rev 0)
+++ z3c.optionstorage/trunk/CHANGES.txt	2007-11-03 05:51:06 UTC (rev 81425)
@@ -0,0 +1,28 @@
+=======
+CHANGES
+=======
+
+0.1.4 (2007-11-03)
+------------------
+
+- Fix up package meta data.
+
+0.1.3 (2007-07-04)
+------------------
+
+- Ensure that all package files are included in the egg.
+
+0.1.2 (2007-07-04)
+------------------
+
+- Bug fix.
+
+0.1.1 (2007-07-04)
+------------------
+
+- Fix packaging data.
+
+0.1.0 (2007-06-22)
+------------------
+
+- Initial release.


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

Deleted: z3c.optionstorage/trunk/MANIFEST.in
===================================================================
--- z3c.optionstorage/trunk/MANIFEST.in	2007-11-03 05:20:36 UTC (rev 81424)
+++ z3c.optionstorage/trunk/MANIFEST.in	2007-11-03 05:51:06 UTC (rev 81425)
@@ -1,4 +0,0 @@
-include ZopePublicLicense.txt
-include src/z3c/optionstorage/*.zcml
-include src/z3c/optionstorage/browser/*.zcml
-include src/z3c/optionstorage/browser/*.pt

Added: z3c.optionstorage/trunk/README.txt
===================================================================
--- z3c.optionstorage/trunk/README.txt	                        (rev 0)
+++ z3c.optionstorage/trunk/README.txt	2007-11-03 05:51:06 UTC (rev 81425)
@@ -0,0 +1,2 @@
+Option Storages are vocabularies that store their values in the ZODB and can
+be managed during application runtime.


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

Modified: z3c.optionstorage/trunk/buildout.cfg
===================================================================
--- z3c.optionstorage/trunk/buildout.cfg	2007-11-03 05:20:36 UTC (rev 81424)
+++ z3c.optionstorage/trunk/buildout.cfg	2007-11-03 05:51:06 UTC (rev 81425)
@@ -1,7 +1,6 @@
 [buildout]
 develop = .
 parts = test
-find-links = http://download.zope.org/distribution/
 
 [test]
 recipe = zc.recipe.testrunner

Modified: z3c.optionstorage/trunk/setup.py
===================================================================
--- z3c.optionstorage/trunk/setup.py	2007-11-03 05:20:36 UTC (rev 81424)
+++ z3c.optionstorage/trunk/setup.py	2007-11-03 05:51:06 UTC (rev 81425)
@@ -1,31 +1,68 @@
+##############################################################################
+#
+# Copyright (c) 2007 Zope Corporation 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 for z3c.viewlet package
+
+$Id$
+"""
+import os
 from setuptools import setup, find_packages
 
-setup(
-    name = 'z3c.optionstorage',
-    version = '0.1.3',
-    author = 'Zope Corporation and Contributors',
-    author_email = 'zope3-dev at zope.org',
-    description = '',
-    license = 'ZPL 2.1',
-    namespace_packages=['z3c'],
-    packages = find_packages('src'),
-    package_dir = {'': 'src'},
-    include_package_data = True,
-    install_requires = ['setuptools',
-                        'ZODB3',
-                        'zope.annotation',
-                        'zope.configuration', 
-                        'zope.deprecation', 
-                        'zope.i18n',
-                        'zope.interface',
-                        'zope.proxy',
-                        'zope.app.schema',
-                        'zope.schema',
-                        'zope.security',
-                        'zope.app.pagetemplate',
-                        'zope.app.publisher',
-                        'zope.app.form',
-                        'zope.app.zapi'],
-    dependency_links=['http://download.zope.org/distribution/'],
-    zip_safe = False,
-    )
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
+setup(name='z3c.optionstorage',
+      version = '1.0.4',
+      author='Zope Corporation and Contributors',
+      author_email='zope3-dev at zope.org',
+      description='Optional Storages -- Persistent, Managable Vocabularies',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 vocabulary zodb managable",
+      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/z3c.optionstorage',
+      license='ZPL 2.1',
+      packages=find_packages('src'),
+      package_dir = {'': 'src'},
+      namespace_packages=['z3c'],
+      extras_require=dict(test=['zope.testing']),
+      install_requires = ['setuptools',
+                          'ZODB3',
+                          'zope.annotation',
+                          'zope.configuration',
+                          'zope.deprecation',
+                          'zope.i18n',
+                          'zope.interface',
+                          'zope.proxy',
+                          'zope.app.schema',
+                          'zope.schema',
+                          'zope.security',
+                          'zope.app.pagetemplate',
+                          'zope.app.publisher',
+                          'zope.app.form',
+                          'zope.app.zapi'],
+      include_package_data = True,
+      zip_safe = False,
+      )



More information about the Checkins mailing list