[Checkins] SVN: relstorage/trunk/setup.py Metadata update and variable name change

Shane Hathaway shane at hathawaymix.org
Sat Apr 25 19:02:05 EDT 2009


Log message for revision 99495:
  Metadata update and variable name change
  

Changed:
  U   relstorage/trunk/setup.py

-=-
Modified: relstorage/trunk/setup.py
===================================================================
--- relstorage/trunk/setup.py	2009-04-25 23:00:46 UTC (rev 99494)
+++ relstorage/trunk/setup.py	2009-04-25 23:02:05 UTC (rev 99495)
@@ -21,7 +21,7 @@
 # Development Status :: 3 - Alpha
 
 classifiers = """\
-Development Status :: 5 - Production/Stable
+Development Status :: 4 - Beta
 Intended Audience :: Developers
 License :: OSI Approved :: Zope Public License
 Programming Language :: Python
@@ -36,13 +36,16 @@
     from setuptools import setup
 except ImportError:
     from distutils.core import setup
-    setuptools_args = dict(
+    setup_args = dict(
         scripts=['relstorage/zodbconvert.py'],
     )
 else:
-    setuptools_args = dict(
+    setup_args = dict(
         zip_safe=False,  # otherwise ZConfig can't see component.xml
-        install_requires=['ZODB3>=3.7.0'],
+        install_requires=[
+            'ZODB3>=3.7.0',
+            'zope.interface',
+            ],
         extras_require={
             'mysql':      ['MySQL-python>=1.2.2'],
             'postgresql': ['psycopg2>=2.0'],
@@ -66,7 +69,7 @@
     version=VERSION,
     maintainer="Shane Hathaway",
     maintainer_email="shane at hathawaymix.org",
-    url="http://wiki.zope.org/ZODB/RelStorage",
+    url="http://pypi.python.org/pypi/RelStorage",
     packages=['relstorage', 'relstorage.adapters', 'relstorage.tests'],
     package_data={
         'relstorage': ['component.xml'],
@@ -80,5 +83,5 @@
         "Change History\n" +
         "==============\n\n" +
         read_file("CHANGES.txt")),
-    **setuptools_args
+    **setup_args
     )



More information about the Checkins mailing list