[Checkins] SVN: zc.zope3recipes/trunk/ Updated release info.

Jim Fulton jim at zope.com
Wed Feb 28 13:54:45 EST 2007


Log message for revision 72914:
  Updated release info.
  

Changed:
  A   zc.zope3recipes/trunk/README.txt
  U   zc.zope3recipes/trunk/setup.py

-=-
Added: zc.zope3recipes/trunk/README.txt
===================================================================
--- zc.zope3recipes/trunk/README.txt	2007-02-28 18:36:02 UTC (rev 72913)
+++ zc.zope3recipes/trunk/README.txt	2007-02-28 18:54:44 UTC (rev 72914)
@@ -0,0 +1,14 @@
+**************************************
+Zope3 Application and Instance Recipes
+**************************************
+
+Somewhat experimental recipes for creating Zope 3 instances with
+distinguishing features:
+
+- Don't use a skeletin
+
+- Seprates application and instance definition
+
+- Don't support package-includes
+
+.. contents::


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

Modified: zc.zope3recipes/trunk/setup.py
===================================================================
--- zc.zope3recipes/trunk/setup.py	2007-02-28 18:36:02 UTC (rev 72913)
+++ zc.zope3recipes/trunk/setup.py	2007-02-28 18:54:44 UTC (rev 72914)
@@ -1,16 +1,34 @@
+import os
 from setuptools import setup, find_packages
 
+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.2",
+    version = "0.3",
     author = "Jim Fulton",
     author_email = "jim at zope.com",
     description = "ZC Buildout recipe for defining Zope 3 applications",
-    #long_description = open('README.txt').read(),
     license = "ZPL 2.1",
     keywords = "zope3 buildout",
     url='http://svn.zope.org/'+name,
+    long_description=long_description,
 
     packages = find_packages('.'),
     include_package_data = True,
@@ -28,4 +46,11 @@
     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',
+       ],
     )



More information about the Checkins mailing list