Moves test dependencies into `tests_require` section of `setup.py`

pull/260/head
Dr. Sergey Pogodin 7 years ago
parent 6886d149c7
commit ef11db6f6f
  1. 11
      setup.py

@ -311,7 +311,6 @@ setup(
'BTrees',
'py-solc',
'plyvel',
'pytest>=3.6.0',
'eth_abi>=1.0.0',
'eth-utils>=1.0.1',
'eth-account>=0.1.0a2',
@ -324,9 +323,13 @@ setup(
'jinja2',
'rlp<1.0.0',
'py-flags',
'mock',
'pytest_mock',
'pytest-cov'
'mock'
],
tests_require=[
'pytest>=3.6.0',
'pytest_mock',
'pytest-cov'
],
python_requires='>=3.5',

Loading…
Cancel
Save