[Zodb-checkins] CVS: StandaloneZODB - setup.py:1.12
Guido van Rossum
guido@python.org
Tue, 12 Feb 2002 17:33:38 -0500
Update of /cvs-repository/StandaloneZODB
In directory cvs.zope.org:/tmp/cvs-serv13020
Modified Files:
setup.py
Log Message:
More changes merging the StandaloneZODB-1.0 release branch into the
trunk. I'm *almost* done with the merge; the only file not yet merged
is FileStorage.py.
=== StandaloneZODB/setup.py 1.11 => 1.12 ===
)
+fsb = Extension(name = "BTrees._fsBTree",
+ include_dirs = include,
+ sources = ['BTrees/_fsBTree.c'],
+ define_macros = [('EXCLUDE_INTSET_SUPPORT', None)],
+ )
+
packages = ['BTrees', 'BTrees.tests',
'ZEO', 'ZEO.tests',
'ZODB', 'ZODB.tests',
@@ -93,7 +99,7 @@
packages.extend(["bsddb3Storage", "bsddb3Storage.tests"])
setup(name="StandaloneZODB",
- version="1.0+",
+ version="1.0",
description="Zope Object Database: object database and persistence",
maintainer="Zope Corp.",
maintainer_email="zodb-dev@zope.org",
@@ -105,7 +111,7 @@
MethodObject, Missing, MultiMapping, Sync,
ThreadLock, Record, cPersistence, cPickleCache,
TimeStamp, coptimizations, winlock, oob, oib,
- iib, iob,
+ iib, iob, fsb,
],
headers = ['ExtensionClass/src/ExtensionClass.h', 'ZODB/cPersistence.h'],