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

Stephan Richter srichter at cosmos.phy.tufts.edu
Sun Nov 4 19:04:59 EST 2007


Log message for revision 81500:
  Get ready for release.
  

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

-=-
Added: zope.xmlpickle/trunk/CHANGES.txt
===================================================================
--- zope.xmlpickle/trunk/CHANGES.txt	                        (rev 0)
+++ zope.xmlpickle/trunk/CHANGES.txt	2007-11-05 00:04:59 UTC (rev 81500)
@@ -0,0 +1,8 @@
+=======
+CHANGES
+=======
+
+3.4.0 (2007-11-03)
+------------------
+
+- Initial release independent of the main Zope tree.


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

Added: zope.xmlpickle/trunk/README.txt
===================================================================
--- zope.xmlpickle/trunk/README.txt	                        (rev 0)
+++ zope.xmlpickle/trunk/README.txt	2007-11-05 00:04:59 UTC (rev 81500)
@@ -0,0 +1 @@
+Pickle-based serialization of Python objects to and from XML.


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

Modified: zope.xmlpickle/trunk/buildout.cfg
===================================================================
--- zope.xmlpickle/trunk/buildout.cfg	2007-11-04 23:55:41 UTC (rev 81499)
+++ zope.xmlpickle/trunk/buildout.cfg	2007-11-05 00:04:59 UTC (rev 81500)
@@ -2,8 +2,6 @@
 develop = .
 parts = test
 
-find-links = http://download.zope.org/distribution/
-
 [test]
 recipe = zc.recipe.testrunner
 eggs = zope.xmlpickle

Modified: zope.xmlpickle/trunk/setup.py
===================================================================
--- zope.xmlpickle/trunk/setup.py	2007-11-04 23:55:41 UTC (rev 81499)
+++ zope.xmlpickle/trunk/setup.py	2007-11-05 00:04:59 UTC (rev 81500)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2007 Zope Corporation and Contributors.
+# Copyright (c) 2006 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -15,23 +15,39 @@
 
 $Id$
 """
-
+import os
 from setuptools import setup, find_packages
 
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
 setup(name='zope.xmlpickle',
-      version = '3.4.0b1',
-      url='http://svn.zope.org/zope.xmlpickle',
-      license='ZPL 2.1',
-      description='Zope xmlpickle',
+      version = '3.5.0dev',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
+      description='XML-based Pickling',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 pickle xml",
+      classifiers = [
+          'Development Status :: 5 - Production/Stable',
+          'Intended Audience :: Developers',
+          'License :: OSI Approved :: Zope Public License',
+          'Programming Language :: Python',
+          'Natural Language :: English',
+          'Operating System :: OS Independent',
+          'Topic :: Internet :: WWW/HTTP'],
+      url='http://cheeseshop.python.org/pypi/zope.xmlpickle',
+      license='ZPL 2.1',
       packages=find_packages('src'),
       package_dir = {'': 'src'},
-
-      namespace_packages=['zope',],
+      namespace_packages=['zope'],
+      install_requires=[
+          'setuptools',
+          ],
       include_package_data = True,
-      install_requires=['setuptools'],
-
       zip_safe = False,
       )


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




More information about the Checkins mailing list