[Checkins] SVN: zope.dublincore/trunk/ Update pacakge metadata to read README and CHANGES

Philipp von Weitershausen philikon at philikon.de
Fri Sep 28 06:51:03 EDT 2007


Log message for revision 80286:
  Update pacakge metadata to read README and CHANGES
  
  Don't use extra_requires, instead inline the testing dependencies.
  
  Prepare 3.4.0 release
  

Changed:
  U   zope.dublincore/trunk/buildout.cfg
  U   zope.dublincore/trunk/setup.py

-=-
Modified: zope.dublincore/trunk/buildout.cfg
===================================================================
--- zope.dublincore/trunk/buildout.cfg	2007-09-28 10:50:11 UTC (rev 80285)
+++ zope.dublincore/trunk/buildout.cfg	2007-09-28 10:51:02 UTC (rev 80286)
@@ -5,4 +5,4 @@
 
 [test]
 recipe = zc.recipe.testrunner
-eggs = zope.dublincore [test]
+eggs = zope.dublincore

Modified: zope.dublincore/trunk/setup.py
===================================================================
--- zope.dublincore/trunk/setup.py	2007-09-28 10:50:11 UTC (rev 80285)
+++ zope.dublincore/trunk/setup.py	2007-09-28 10:51:02 UTC (rev 80286)
@@ -15,15 +15,19 @@
 
 $Id$
 """
-
 from setuptools import setup, find_packages
 
+long_description = (open('README.txt').read() +
+                    '\n\n' +
+                    open('CHANGES.txt').read())
+
 setup(
     name="zope.dublincore",
-    version = '3.4.0b1',
-    url='http://svn.zope.org/zope.dublincore',
+    version = '3.4.0',
+    url='http://pypi.python.org/pypi/zope.dublincore',
     license='ZPL 2.1',
     description='Zope Dublin Core implementation',
+    long_description=long_description,
     author='Zope Corporation and Contributors',
     author_email='zope3-dev at zope.org',
 
@@ -31,10 +35,14 @@
     package_dir={'':'src'},
     namespace_packages=['zope'],
     include_package_data=True,
-    extras_require=dict(test=['zope.app.testing']),
     install_requires = ['setuptools',
                         'zope.annotation',
+                        'zope.component',
                         'zope.interface',
+                        # testing dependencies
+                        'zope.testing',
+                        'zope.security',
+                        'zope.app.testing',
                         ],
     zip_safe = False
     )



More information about the Checkins mailing list