[Checkins] SVN: zc.buildout/trunk/zc.recipe.egg_/ Get ready for final release.

Stephan Richter srichter at cosmos.phy.tufts.edu
Sat Nov 3 15:14:30 EDT 2007


Log message for revision 81447:
  Get ready for final release.
  

Changed:
  U   zc.buildout/trunk/zc.recipe.egg_/CHANGES.txt
  U   zc.buildout/trunk/zc.recipe.egg_/setup.py

-=-
Modified: zc.buildout/trunk/zc.recipe.egg_/CHANGES.txt
===================================================================
--- zc.buildout/trunk/zc.recipe.egg_/CHANGES.txt	2007-11-03 18:34:33 UTC (rev 81446)
+++ zc.buildout/trunk/zc.recipe.egg_/CHANGES.txt	2007-11-03 19:14:30 UTC (rev 81447)
@@ -8,6 +8,12 @@
 Change History
 **************
 
+1.0.0 (2007-11-03)
+==================
+
+- No code changes from last beta, just some small package meta-data
+  improvements.
+
 1.0.0b5 (2007-02-08)
 ====================
 

Modified: zc.buildout/trunk/zc.recipe.egg_/setup.py
===================================================================
--- zc.buildout/trunk/zc.recipe.egg_/setup.py	2007-11-03 18:34:33 UTC (rev 81446)
+++ zc.buildout/trunk/zc.recipe.egg_/setup.py	2007-11-03 19:14:30 UTC (rev 81447)
@@ -1,3 +1,20 @@
+##############################################################################
+#
+# Copyright (c) 2007 Zope Corporation 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 for zc.recipe.egg package
+
+$Id$
+"""
 import os
 from setuptools import setup, find_packages
 
@@ -7,7 +24,7 @@
 name = "zc.recipe.egg"
 setup(
     name = name,
-    version = "1.0.0b6",
+    version = "1.0.0",
     author = "Jim Fulton",
     author_email = "jim at zope.com",
     description = "Recipe for installing Python package distributions as eggs",
@@ -28,17 +45,26 @@
         read('src', 'zc', 'recipe', 'egg', 'api.txt')
         + '\n' +
         'Download\n'
-        '**********************\n'
+        '*********\n'
         ),
+    keywords = "development build",
+    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',
+       ],
+    url='http://cheeseshop.python.org/pypi/zc.recipe.egg',
     license = "ZPL 2.1",
-    keywords = "development build",
-    url='http://svn.zope.org/zc.buildout',
 
     packages = find_packages('src'),
-    include_package_data = True,
     package_dir = {'':'src'},
     namespace_packages = ['zc', 'zc.recipe'],
-    install_requires = ['zc.buildout >=1.0.0b3', 'setuptools'],
+    install_requires = [
+        'zc.buildout >=1.0.0b3',
+        'setuptools'],
     tests_require = ['zope.testing'],
     test_suite = name+'.tests.test_suite',
     entry_points = {'zc.buildout': ['default = %s:Scripts' % name,
@@ -49,13 +75,6 @@
                                     'develop = %s:Develop' % name,
                                     ]
                     },
+    include_package_data = True,
     zip_safe=False,
-    classifiers = [
-       'Framework :: Buildout',
-       'Development Status :: 4 - Beta',
-       '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