diff --git a/setup.py b/setup.py index c8a7609..2f956b3 100755 --- a/setup.py +++ b/setup.py @@ -14,8 +14,8 @@ setuptools.setup(name='warcprox', packages=['warcprox'], install_requires=['pyopenssl', 'warctools>=4.8.3'], # gdbm/dbhash? dependency_links=['git+https://github.com/nlevitt/warctools.git@python3#egg=warctools-4.8.3'], - tests_require=['requests>=2.0.1'], # >=2.0.1 for https://github.com/kennethreitz/requests/pull/1636 + tests_require=['nose', 'requests>=2.0.1'], # >=2.0.1 for https://github.com/kennethreitz/requests/pull/1636 + test_suite='nose.collector', scripts=['bin/dump-anydbm', 'bin/warcprox'], - zip_safe=False, - test_suite='warcprox.tests') + zip_safe=False)