我正在编写一个使用py.test进行测试的python程序,现在一个测试也依赖于numpy。我应该在setup.py中添加这些依赖项吗?
目前我的setup.py的相关部分看起来像这样:
[...]
'version': '0.0.1',
'install_requires': [],
'tests_require': ['pytest'],
'cmdclass': {'test': PyTest},
'extras_require': {
'testing': ['pytest'],
},
[...]
两次pytest
感觉已经有些奇怪了,我不知道在哪里添加numpy。