[Checkins] SVN: zc.zope3recipes/trunk/ Get ready for release.

Stephan Richter srichter at cosmos.phy.tufts.edu
Sat Nov 3 20:20:40 EDT 2007


Log message for revision 81463:
  Get ready for release.
  

Changed:
  U   zc.zope3recipes/trunk/buildout.cfg
  U   zc.zope3recipes/trunk/setup.py

-=-
Modified: zc.zope3recipes/trunk/buildout.cfg
===================================================================
--- zc.zope3recipes/trunk/buildout.cfg	2007-11-03 23:52:04 UTC (rev 81462)
+++ zc.zope3recipes/trunk/buildout.cfg	2007-11-04 00:20:39 UTC (rev 81463)
@@ -1,7 +1,6 @@
 [buildout]
 parts = test
 develop = .
-find-links = http://download.zope.org/distribution
 
 [test]
 recipe = zc.recipe.testrunner

Modified: zc.zope3recipes/trunk/setup.py
===================================================================
--- zc.zope3recipes/trunk/setup.py	2007-11-03 23:52:04 UTC (rev 81462)
+++ zc.zope3recipes/trunk/setup.py	2007-11-04 00:20:39 UTC (rev 81463)
@@ -4,32 +4,27 @@
 def read(*rnames):
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-long_description = (
-    read('README.txt')
-    + '\n' +
-    'Detailed Documentation\n'
-    '**********************\n'
-    + '\n' +
-    read('zc', 'zope3recipes', 'README.txt')
-    + '\n' +
-    'Download\n'
-    '**********************\n'
-    )
-
-#open('long-description.txt', 'w').write(long_description)
-
 name = "zc.zope3recipes"
 setup(
     name = name,
-    version = "0.6b1",
+    version = "0.6.0",
     author = "Jim Fulton",
     author_email = "jim at zope.com",
     description = "ZC Buildout recipe for defining Zope 3 applications",
     license = "ZPL 2.1",
     keywords = "zope3 buildout",
-    url='http://svn.zope.org/'+name,
-    long_description=long_description,
-
+    url='http://cheeseshop.python.org/pypi/'+name,
+    long_description = (
+        read('README.txt')
+        + '\n' +
+        'Detailed Documentation\n'
+        '**********************\n'
+        + '\n' +
+        read('zc', 'zope3recipes', 'README.txt')
+        + '\n' +
+        'Download\n'
+        '**********************\n'
+        ),
     packages = find_packages('.'),
     include_package_data = True,
     #package_dir = {'':'src'},
@@ -47,11 +42,13 @@
     extras_require = dict(
         tests = ['zdaemon', 'zc.recipe.filestorage'],
         ),
-    classifiers = [
-       'Framework :: Buildout',
-       'Intended Audience :: Developers',
-       'License :: OSI Approved :: Zope Public License',
-       'Topic :: Software Development :: Build Tools',
-       'Topic :: Software Development :: Libraries :: Python Modules',
-       ],
+    classifiers=[
+        "Development Status :: 5 - Production/Stable",
+        "Framework :: Buildout",
+        "Intended Audience :: Developers",
+        "License :: OSI Approved :: Zope Public License",
+        "Topic :: Software Development :: Build Tools",
+        "Topic :: Software Development :: Libraries :: Python Modules",
+        ],
     )
+ 



More information about the Checkins mailing list