[Checkins] SVN: Sandbox/J1m/oodb/ checkpoint

Jim Fulton jim at zope.com
Tue Oct 4 11:12:49 EST 2011


Log message for revision 123026:
  checkpoint

Changed:
  U   Sandbox/J1m/oodb/README.txt
  U   Sandbox/J1m/oodb/setup.py
  A   Sandbox/J1m/oodb/src/oodb/
  D   Sandbox/J1m/oodb/src/zc/

-=-
Modified: Sandbox/J1m/oodb/README.txt
===================================================================
--- Sandbox/J1m/oodb/README.txt	2011-10-04 16:05:14 UTC (rev 123025)
+++ Sandbox/J1m/oodb/README.txt	2011-10-04 16:12:48 UTC (rev 123026)
@@ -1,14 +1,10 @@
-Title Here
-**********
+Object Oriented Database (oodb)
+*******************************
 
+The oodb package is a namespace package to gather packages in support
+of object-oriented databases based on the Z Object Database
+Technology.  It's possible that packages currently in the ZODB
+distribution will migrate here.
 
-To learn more, see
-
-
-Changes
-*******
-
-0.1.0 (yyyy-mm-dd)
-==================
-
-Initial release
+Don't bother installing this package. It doesn't provide any
+code. It's just a place holder for the namespace package.

Modified: Sandbox/J1m/oodb/setup.py
===================================================================
--- Sandbox/J1m/oodb/setup.py	2011-10-04 16:05:14 UTC (rev 123025)
+++ Sandbox/J1m/oodb/setup.py	2011-10-04 16:12:48 UTC (rev 123026)
@@ -11,16 +11,10 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-name, version = 'zc.', '0'
+name, version = 'oodb', '0'
 
-install_requires = ['setuptools']
-extras_require = dict(test=['zope.testing'])
+from distutils import setup
 
-entry_points = """
-"""
-
-from setuptools import setup
-
 setup(
     author = 'Jim Fulton',
     author_email = 'jim at zope.com',
@@ -29,14 +23,6 @@
     name = name, version = version,
     long_description=open('README.txt').read(),
     description = open('README.txt').read().strip().split('\n')[0],
-    packages = [name.split('.')[0], name],
-    namespace_packages = [name.split('.')[0]],
+    packages = [name],
     package_dir = {'': 'src'},
-    install_requires = install_requires,
-    zip_safe = False,
-    entry_points=entry_points,
-    package_data = {name: ['*.txt', '*.test', '*.html']},
-    extras_require = extras_require,
-    tests_require = extras_require['test'],
-    test_suite = name+'.tests.test_suite',
     )



More information about the checkins mailing list