[Checkins] SVN: zope.decorator/trunk/setup.py - s/install_requirements/install_requires

Baiju M baiju.m.mail at gmail.com
Mon Mar 12 01:47:37 EDT 2007


Log message for revision 73145:
   - s/install_requirements/install_requires
   - Incremented version to 3.4dev
  
  This package is deprecated. Even though it is required 
  for backward compatibility.
  

Changed:
  UU  zope.decorator/trunk/setup.py

-=-
Modified: zope.decorator/trunk/setup.py
===================================================================
--- zope.decorator/trunk/setup.py	2007-03-12 05:25:36 UTC (rev 73144)
+++ zope.decorator/trunk/setup.py	2007-03-12 05:47:35 UTC (rev 73145)
@@ -1,3 +1,21 @@
+##############################################################################
+#
+# Copyright (c) 2006 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 zope.decorator package
+
+$Id$
+"""
+
 from setuptools import setup, find_packages
 
 setup(
@@ -2,8 +20,14 @@
     name="zope.decorator",
-    version="0.1dev",
+    version="3.4dev",
+    url='http://svn.zope.org/zope.decorator',
+    license='ZPL 2.1',
+    description='Zope testbrowser',
+    author='Zope Corporation and Contributors',
+    author_email='zope3-dev at zope.org',
+
     packages=find_packages('src'),
     package_dir={'':'src'},
     namespace_packages=['zope'],
     include_package_data=True,
-    install_requirements = ['setuptools'],
+    install_requires = ['setuptools'],
     zip_safe = False


Property changes on: zope.decorator/trunk/setup.py
___________________________________________________________________
Name: svn:keywords
   + Id



More information about the Checkins mailing list