[Checkins] SVN: z3c.recipe.dev/trunk/ cleanup, prepare for release

Roger Ineichen roger at projekt01.ch
Sun Jan 20 19:09:57 EST 2008


Log message for revision 82985:
  cleanup, prepare for release

Changed:
  U   z3c.recipe.dev/trunk/CHANGES.txt
  U   z3c.recipe.dev/trunk/README.txt
  U   z3c.recipe.dev/trunk/setup.py

-=-
Modified: z3c.recipe.dev/trunk/CHANGES.txt
===================================================================
--- z3c.recipe.dev/trunk/CHANGES.txt	2008-01-20 23:20:39 UTC (rev 82984)
+++ z3c.recipe.dev/trunk/CHANGES.txt	2008-01-21 00:09:57 UTC (rev 82985)
@@ -2,8 +2,7 @@
 CHANGES
 =======
 
-unreleased
-----------
+Version 0.5.0 (2007-01-21)
+--------------------------
 
-- Initial implementation
-
+- Initial Release

Modified: z3c.recipe.dev/trunk/README.txt
===================================================================
--- z3c.recipe.dev/trunk/README.txt	2008-01-20 23:20:39 UTC (rev 82984)
+++ z3c.recipe.dev/trunk/README.txt	2008-01-21 00:09:57 UTC (rev 82985)
@@ -2,8 +2,8 @@
 Zope 3 development recipe
 =========================
 
-The z3c.recipe.start generates start scripts and configuration files for 
+The z3c.recipe.dev:app generates start scripts and configuration files for 
 starting a egg based Zope 3 setup.
 
-The z3c.recipe.script generates a hook to a existing python module and allows
-to execute a python method including eggs in sys path.
+The z3c.recipe.dev:script generates a hook to a existing python module and 
+allows to execute a python method including eggs in sys path.

Modified: z3c.recipe.dev/trunk/setup.py
===================================================================
--- z3c.recipe.dev/trunk/setup.py	2008-01-20 23:20:39 UTC (rev 82984)
+++ z3c.recipe.dev/trunk/setup.py	2008-01-21 00:09:57 UTC (rev 82985)
@@ -1,3 +1,20 @@
+##############################################################################
+#
+# Copyright (c) 2007 Zope Foundation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+"""Setup
+
+$Id: setup.py 82497 2007-12-28 14:59:22Z rogerineichen $
+"""
 import os
 from setuptools import setup, find_packages
 
@@ -5,28 +22,19 @@
 def read(*rnames):
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-name = "z3c.recipe.dev"
 setup(
-    name = name,
-    version = "0.0.1dev",
-    author = "Roger Ineichen and the Zope Community",
-    author_email = "roger at projekt01.ch",
-    description = "Zope3 development recipes",
-    long_description = (
+    name = 'z3c.recipe.dev',
+    version = '0.5.0',
+    author = 'Roger Ineichen and the Zope Community',
+    author_email = 'zope3-dev at zope.org',
+    description = 'Zope3 development server setup recipes',
+    long_description=(
         read('README.txt')
-         + '\n' +
+        + '\n\n' +
         read('CHANGES.txt')
-        + '\n' +
-        'Detailed Documentation\n'
-        '**********************\n'
-        + '\n' +
-        read('src', 'z3c', 'recipe', 'dev', 'README.txt')
-        + '\n' +
-        'Download\n'
-        '**********************\n'
         ),
-    license = "ZPL 2.1",
-    keywords = "zope3 z3c dev recipe",
+    license = 'ZPL 2.1',
+    keywords = 'zope3 z3c dev recipe',
     classifiers = [
         'Development Status :: 3 - Alpha',
         'Environment :: Web Environment',
@@ -37,11 +45,10 @@
         'Operating System :: OS Independent',
         'Topic :: Internet :: WWW/HTTP',
         'Framework :: Zope3'],
-    url = 'http://cheeseshop.python.org/pypi/'+name,
+    url = 'http://cheeseshop.python.org/pypi/z3c.recipe.dev',
     packages = find_packages('src'),
+    include_package_data = True,
     package_dir = {'':'src'},
-    dependency_links = ['http://download.zope.org/distribution/'],
-    include_package_data = True,
     namespace_packages = ['z3c', 'z3c.recipe'],
     extras_require = dict(
         test = [
@@ -57,8 +64,9 @@
         ],
     entry_points = {
         'zc.buildout': [
-             'app = %s.app:AppSetup' % name,
-             'script = %s.script:ScriptSetup' % name,
+             'app = z3c.recipe.dev.app:AppSetup',
+             'script = z3c.recipe.dev.script:ScriptSetup',
          ]
     },
+    dependency_links = ['http://download.zope.org/distribution'],
 )



More information about the Checkins mailing list