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 arrow
bbcode bbcode
blinker blinker
flake8
jmespath jmespath
mypy
pytest
requests requests

View file

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

View file

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