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

Jeremy Hylton jeremy@zope.com
Thu, 2 Aug 2001 08:55:17 -0400


Update of /cvs-repository/Releases/StandaloneZODB
In directory cvs.zope.org:/tmp/cvs-serv25698

Modified Files:
	setup.py 
Log Message:
Update setup to work with new repository layout.
Update author name.

 
=== Releases/StandaloneZODB/setup.py 1.7 => 1.8 ===
 
 # a few constants
-digital_creations = "Digital Creations"
+zope_corp = "Zope Corporation"
 zodb_email = "zodb-dev@zope.org"
 zodb_wiki = "http://www.zope.org/Wikis/ZODB/FrontPage"
 
@@ -52,7 +52,7 @@
 setup(name="ZODB",
       version="3.1",
       description = "Z Object Database persistence system",
-      author = digital_creations,
+      author = zope_corp,
       author_email = zodb_email,
       url = zodb_wiki,
 
@@ -66,7 +66,7 @@
 setup(name = "ZEO", 
       version = "0.4.1",
       description = "Zope Enterprise Objects",
-      author = digital_creations,
+      author = zope_corp,
       author_email = zodb_email,
       url = zodb_wiki,
 
@@ -76,7 +76,7 @@
 # Berkeley storages
 setup(name="bsddb3Storage",
       description="ZODB storages based on Berkeley DB",
-      author = digital_creations,
+      author = zope_corp,
       author_email = zodb_email,
       url = zodb_wiki,
       package_dir = {'bsddb3Storage': 'bsddb3Storage/bsddb3Storage'},
@@ -113,16 +113,15 @@
       version="?",
       packages=["BTrees", "BTrees.tests"],
       ext_modules = [oob, oib, iib, iob],
-      author = digital_creations,
+      author = zope_corp,
       )
 
 # Lib -- misc. support files
-setup(name = "ZopeLib",
-      package_dir = {'':'Lib'},
-      py_modules = ["Persistence",
-                    "ThreadedAsync",
-                    "zLOG",
-                    "zdaemon",
-                    ]
+setup(name = "Other libraries",
+      packages = ["Persistence",
+                  "ThreadedAsync",
+                  "zLOG",
+                  "zdaemon",
+                  ]
       )