[Checkins] SVN: zope.schema/trunk/setup.py Fix package metadata

Philipp von Weitershausen philikon at philikon.de
Fri Sep 28 07:45:24 EDT 2007


Log message for revision 80307:
  Fix package metadata
  

Changed:
  U   zope.schema/trunk/setup.py

-=-
Modified: zope.schema/trunk/setup.py
===================================================================
--- zope.schema/trunk/setup.py	2007-09-28 11:44:42 UTC (rev 80306)
+++ zope.schema/trunk/setup.py	2007-09-28 11:45:24 UTC (rev 80307)
@@ -15,9 +15,7 @@
 
 $Id$
 """
-
 import os
-
 from setuptools import setup, find_packages
 
 def read(*rnames):
@@ -30,29 +28,20 @@
       description='Zope3 Data Schemas',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
-      long_description=(
-        read('README.txt')
-        + '\n' +
-        'Detailed Documentation\n'
-        '**********************\n'
-        + '\n' +
-        read('src', 'zope', 'schema', 'README.txt')
-        + '\n' +
-        'Download\n'
-        '**********************\n'
-        ),
+      long_description=(read('src', 'zope', 'schema', 'README.txt')
+                        + '\n\n' +
+                        read('CHANGES.txt')),
 
       packages=find_packages('src'),
       package_dir = {'': 'src'},
-
       namespace_packages=['zope',],
-      tests_require = ['zope.testing'],
       install_requires=['setuptools',
                         'zope.i18nmessageid',
                         'zope.interface',
                         'zope.event',
+                        # testing dependencies
+                        'zope.testing',
                        ],
       include_package_data = True,
-
       zip_safe = False,
       )



More information about the Checkins mailing list