Skip to content
This repository has been archived by the owner on Dec 17, 2020. It is now read-only.

Commit

Permalink
adjust dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
projekt01 committed Jul 2, 2010
1 parent 9334b36 commit 74bdd69
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
5 changes: 4 additions & 1 deletion setup.py
Expand Up @@ -51,11 +51,14 @@ def read(*rnames):
namespace_packages = ['z3c'],
extras_require = dict(
test = [
'z3c.macro',
'z3c.table',
'z3c.testing',
'zope.app.testing',
'zope.app.publisher',
'zope.browserpage',
'zope.publisher',
'zope.testing',
'z3c.form [test]',
],
),
install_requires = [
Expand Down
5 changes: 2 additions & 3 deletions src/z3c/tabular/README.txt
Expand Up @@ -23,14 +23,13 @@ registered correctly.
>>> from zope.configuration import xmlconfig
>>> import zope.component
>>> import zope.viewlet
>>> import zope.app.component
>>> import zope.component
>>> import zope.app.publisher.browser
>>> import z3c.macro
>>> import z3c.template
>>> import z3c.formui
>>> xmlconfig.XMLConfig('meta.zcml', zope.component)()
>>> xmlconfig.XMLConfig('meta.zcml', zope.viewlet)()
>>> xmlconfig.XMLConfig('meta.zcml', zope.app.component)()
>>> xmlconfig.XMLConfig('meta.zcml', zope.app.publisher.browser)()
>>> xmlconfig.XMLConfig('meta.zcml', z3c.macro)()
>>> xmlconfig.XMLConfig('meta.zcml', z3c.template)()
Expand All @@ -47,7 +46,7 @@ Sample data setup

Let's create a sample container which we can use as our iterable context:

>>> from zope.app.container import btree
>>> from zope.container import btree
>>> class Container(btree.BTreeContainer):
... """Sample container."""
... __name__ = u'container'
Expand Down
2 changes: 1 addition & 1 deletion src/z3c/tabular/tests.py
Expand Up @@ -17,7 +17,7 @@
__docformat__ = "reStructuredText"

import unittest
from zope.testing import doctest
import doctest
from zope.publisher.browser import TestRequest

import z3c.testing
Expand Down

0 comments on commit 74bdd69

Please sign in to comment.