Skip to content

Commit

Permalink
- removed the zope3 checkout from the buildout
Browse files Browse the repository at this point in the history
- set the dependencies right so the tests get all their eggs
  • Loading branch information
Christian Zagrodnick committed May 7, 2007
1 parent d16b961 commit 554aaeb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 20 deletions.
20 changes: 1 addition & 19 deletions 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
13 changes: 12 additions & 1 deletion setup.py
Expand Up @@ -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'},

Expand Down

0 comments on commit 554aaeb

Please sign in to comment.