Add tests_require argument to setup.py.

Addresses https://github.com/jensengroup/propka-3.1/pull/36#discussion_r429100526

Since the tests_require argument is deprecated, I'm also leaving the
requirements.txt file to make sure the dependencies are captured in the
future.
This commit is contained in:
Nathan Baker
2020-05-23 08:17:19 -07:00
parent 1b0ad999b1
commit ebddfa1f9f

View File

@@ -57,5 +57,6 @@ See http://propka.org/ for the PROPKA web server.
}, },
zip_safe=True, zip_safe=True,
python_requires='>=3.5', python_requires='>=3.5',
tests_require=["pandas", "pytest"],
test_suite="tests", test_suite="tests",
) )