Move install requirements to setup script

This commit is contained in:
Joakim Soderlund 2017-11-18 21:33:04 +01:00
parent 93755f813d
commit 307b96d3f1
3 changed files with 11 additions and 5 deletions

View file

@ -1,5 +1,8 @@
arrow
bbcode
blinker
flake8
jmespath
mypy
pytest
requests

View file

@ -84,4 +84,11 @@ setup(
download_url=f'{GITHUB}/archive/{__version__}.tar.gz',
packages=list(iter_package_names()),
package_data=dict(iter_package_data()),
install_requires=(
'arrow',
'bbcode',
'blinker',
'jmespath',
'requests',
),
)

View file

@ -7,15 +7,11 @@ python =
3.6: py36
[testenv]
deps = -rrequirements.txt
commands =
py.test
flake8 fimfarchive tests
mypy --ignore-missing-imports fimfarchive
deps =
-rrequirements.txt
pytest
flake8
mypy
[pytest]
addopts =