remove pandas dependency for tests
Tests do not require pandas but setup.py was still listing it.
This commit is contained in:
4
setup.py
4
setup.py
@@ -41,7 +41,7 @@ See http://propka.org/ for the PROPKA web server.
|
|||||||
'Environment :: Console',
|
'Environment :: Console',
|
||||||
'Intended Audience :: Science/Research',
|
'Intended Audience :: Science/Research',
|
||||||
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
|
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
|
||||||
'Operating System :: POSIX',
|
'Operating System :: POSIX',
|
||||||
'Operating System :: MacOS :: MacOS X',
|
'Operating System :: MacOS :: MacOS X',
|
||||||
'Operating System :: Microsoft :: Windows',
|
'Operating System :: Microsoft :: Windows',
|
||||||
'Programming Language :: Python',
|
'Programming Language :: Python',
|
||||||
@@ -56,6 +56,6 @@ See http://propka.org/ for the PROPKA web server.
|
|||||||
entry_points={'console_scripts': ['propka3 = propka.run:main', ]},
|
entry_points={'console_scripts': ['propka3 = propka.run:main', ]},
|
||||||
zip_safe=True,
|
zip_safe=True,
|
||||||
python_requires='>=3.6',
|
python_requires='>=3.6',
|
||||||
tests_require=["pandas", "numpy", "pytest"],
|
tests_require=["numpy", "pytest"],
|
||||||
test_suite="tests",
|
test_suite="tests",
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user