[Checkins] SVN: zope.location/trunk/ Fix some versions and improve meta-data.

Stephan Richter srichter at cosmos.phy.tufts.edu
Tue Oct 2 22:03:53 EDT 2007


Log message for revision 80518:
  Fix some versions and improve meta-data.
  

Changed:
  A   zope.location/trunk/CHANGES.txt
  U   zope.location/trunk/README.txt
  U   zope.location/trunk/buildout.cfg
  U   zope.location/trunk/setup.py

-=-
Added: zope.location/trunk/CHANGES.txt
===================================================================
--- zope.location/trunk/CHANGES.txt	                        (rev 0)
+++ zope.location/trunk/CHANGES.txt	2007-10-03 02:03:53 UTC (rev 80518)
@@ -0,0 +1,8 @@
+=======
+CHANGES
+=======
+
+3.4.0 (2007-10-02)
+------------------
+
+- Initial release independent of the main Zope tree.


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

Modified: zope.location/trunk/README.txt
===================================================================
--- zope.location/trunk/README.txt	2007-10-03 00:43:57 UTC (rev 80517)
+++ zope.location/trunk/README.txt	2007-10-03 02:03:53 UTC (rev 80518)
@@ -1,5 +1,5 @@
-zope.location Package Readme
-============================
+Zope Location
+=============
 
 Overview
 --------

Modified: zope.location/trunk/buildout.cfg
===================================================================
--- zope.location/trunk/buildout.cfg	2007-10-03 00:43:57 UTC (rev 80517)
+++ zope.location/trunk/buildout.cfg	2007-10-03 02:03:53 UTC (rev 80518)
@@ -1,8 +1,12 @@
 [buildout]
-develop = . 
+develop = .
 parts = test
-find-links = http://download.zope.org/distribution/
+versions = versions
 
 [test]
 recipe = zc.recipe.testrunner
 eggs = zope.location
+
+[versions]
+zope.traversing = 3.4.0
+zope.app.publisher = 3.4.0

Modified: zope.location/trunk/setup.py
===================================================================
--- zope.location/trunk/setup.py	2007-10-03 00:43:57 UTC (rev 80517)
+++ zope.location/trunk/setup.py	2007-10-03 02:03:53 UTC (rev 80518)
@@ -12,28 +12,47 @@
 #
 ##############################################################################
 """Setup for zope.location package
-
-$Id$
 """
-
 import os
-
 from setuptools import setup, find_packages
 
+def read(*rnames):
+    text = open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+    return text
+
 setup(name='zope.location',
-      version = '3.4.0b3',
-      url='http://pypi.python.org/pypi/zope.location/',
-      license='ZPL 2.1',
-      description='Zope Location',
+      version = '3.4.0',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
-      long_description="In Zope3, location are special objects"
-                       "that has a structural location.",
-
+      description='Zope Location',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          'Detailed Documentation' +
+          '----------------------'
+          + '\n\n' +
+          read('src', 'zope', 'location', 'location.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      license='ZPL 2.1',
+      keywords=('zope3 location strutural'),
+      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://pypi.python.org/pypi/zope.location/',
       packages=find_packages('src'),
       package_dir = {'': 'src'},
       namespace_packages=['zope',],
-      extras_require=dict(test=['zope.app.container']),
+      extras_require=dict(
+          test=['zope.app.container']),
       install_requires=['setuptools',
                         'zope.interface',
                         'zope.schema',
@@ -42,6 +61,5 @@
                         'zope.traversing',
                         ],
       include_package_data = True,
-
       zip_safe = False,
       )



More information about the Checkins mailing list