From ebddfa1f9fcec30f1e73ef8bd6b75696c7a35863 Mon Sep 17 00:00:00 2001 From: Nathan Baker Date: Sat, 23 May 2020 08:17:19 -0700 Subject: [PATCH] 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. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 7eb4672..19ab89c 100755 --- a/setup.py +++ b/setup.py @@ -57,5 +57,6 @@ See http://propka.org/ for the PROPKA web server. }, zip_safe=True, python_requires='>=3.5', + tests_require=["pandas", "pytest"], test_suite="tests", )