diff --git a/buildout.cfg b/buildout.cfg index a5764f3..80e3f37 100644 --- a/buildout.cfg +++ b/buildout.cfg @@ -1,27 +1,9 @@ [buildout] develop = . -parts = zope3 data instance test - +parts = test find-links = http://download.zope.org/distribution/ [test] recipe = zc.recipe.testrunner eggs = zc.table extra-paths = parts/zope3/src - -[zope3] -recipe = zc.recipe.zope3checkout -url = svn://svn.zope.org/repos/main/Zope3/branches/3.3 - -[data] -recipe = zc.recipe.filestorage - -[instance] -recipe = zc.recipe.zope3instance -database = data -user = fdrake:123 -eggs = zc.table - -zcml = - zc.resourcelibrary zc.resourcelibrary-meta - zc.table diff --git a/setup.py b/setup.py index df6e6ee..caf875d 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,18 @@ setup( name="zc.table", version="0.7dev", - install_requires=['setuptools', 'zc.resourcelibrary >= 0.6'], + install_requires=[ + 'setuptools', + 'zc.resourcelibrary >= 0.6', + 'zope.app.form', + 'zope.app.testing', + 'zope.cachedescriptors', + 'zope.component', + 'zope.i18n', + 'zope.interface', + 'zope.schema', + 'zope.testing', + ], packages=find_packages('src'), package_dir= {'':'src'},