[Zodb-checkins] CVS: Releases/StandaloneZODB - setup.py:1.6

jeremy@digicool.com jeremy@digicool.com
Tue, 24 Apr 2001 16:16:08 -0400 (EDT)


Update of /cvs-repository/Releases/StandaloneZODB
In directory korak:/tmp/cvs-serv727

Modified Files:
	setup.py 
Log Message:
Add bsddb3Storage.
Clean up setup() calls by using constants for common strings.



--- Updated File setup.py in package Releases/StandaloneZODB --
--- setup.py	2001/04/19 16:54:00	1.5
+++ setup.py	2001/04/24 20:16:07	1.6
@@ -9,6 +9,11 @@
 from distutils.core import setup, run_setup
 from distutils.extension import Extension
 
+# a few constants
+digital_creations = "Digital Creations"
+zodb_email = "zodb-dev@zope.org"
+zodb_wiki = "http://www.zope.org/Wikis/ZODB/FrontPage"
+
 # ExtensionClass
 top_dir = os.getcwd()
 os.chdir('ExtensionClass')
@@ -47,9 +52,9 @@
 setup(name="ZODB",
       version="3.1",
       description = "Z Object Database persistence system",
-      author = "Digital Creations",
-      author_email = "zodb-dev@zope.org",
-      url = "http://www.zope.org",
+      author = digital_creations,
+      author_email = zodb_email,
+      url = zodb_wiki,
 
       packages=['ZODB', 'ZODB.tests'],
       
@@ -61,13 +66,22 @@
 setup(name = "ZEO", 
       version = "0.4.1",
       description = "Zope Enterprise Objects",
-      author = "Digital Creations",
-      author_email = "zodb-dev@zope.org",
-      url = "http://www.zope.org/Products/ZEO",
+      author = digital_creations,
+      author_email = zodb_email,
+      url = zodb_wiki,
 
       packages = ['ZEO', 'ZEO.tests'],
       )
 
+# Berkeley storages
+setup(name="bsddb3Storage",
+      description="ZODB storages based on Berkeley DB",
+      author = digital_creations,
+      author_email = zodb_email,
+      url = zodb_wiki,
+      packages = ["bsddb3Storage", "bsddb3Storage.test"],
+      )
+
 # BTrees
 
 btree_include = ec_include + ['ZODB']
@@ -98,11 +112,11 @@
       version="?",
       packages=["BTrees", "BTrees.tests"],
       ext_modules = [oob, oib, iib, iob],
+      author = digital_creations,
       )
 
 # Lib -- misc. support files
 setup(name = "ZopeLib",
-      version="Your momma", # just to make 2.1b2 happy
       package_dir = {'':'Lib'},
       py_modules = ["Persistence",
                     "ThreadedAsync",