"pycrypto >= 2.0.1",
"pyasn1 >= 0.0.8a",
- # Mock - Mocking and Testing Library
- # http://www.voidspace.org.uk/python/mock/
- "mock",
-
# Will be needed to test web apps, but not yet. See #1001.
#"windmill >= 1.3",
]
if "sdist_dsc" in sys.argv:
setup_requires.append('stdeb >= 0.3')
+tests_require=[
+ # Mock - Mocking and Testing Library
+ # http://www.voidspace.org.uk/python/mock/
+ "mock",
+ ]
+
class ShowSupportLib(Command):
user_options = []
def initialize_options(self):
classifiers=trove_classifiers,
test_suite="allmydata.test",
install_requires=install_requires,
+ tests_require=tests_require,
include_package_data=True,
setup_requires=setup_requires,
entry_points = { 'console_scripts': [ 'tahoe = allmydata.scripts.runner:run' ] },