Commit d722d90e authored by Kai Lautaportti's avatar Kai Lautaportti

Use stdlib doctest instead of zope.testing.doctest

parent 5a55d45e
from zope.testing import doctest
from zope.testing import renormalizing
import doctest
import errno
import os
import re
......
......@@ -40,6 +40,9 @@ setup(name=name,
include_package_data=True,
zip_safe=False,
install_requires = ['zc.buildout', 'setuptools', 'hexagonit.recipe.download'],
extras_require={
'test' : ['zope.testing'],
},
tests_require = ['zope.testing'],
test_suite = '%s.tests.test_suite' % name,
entry_points = { 'zc.buildout' : ['default = %s:Recipe' % name] },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment