mirror of
https://github.com/JockeTF/fimfarchive.git
synced 2024-11-25 14:37:59 +01:00
Move install requirements to setup script
This commit is contained in:
parent
93755f813d
commit
307b96d3f1
3 changed files with 11 additions and 5 deletions
|
@ -1,5 +1,8 @@
|
||||||
arrow
|
arrow
|
||||||
bbcode
|
bbcode
|
||||||
blinker
|
blinker
|
||||||
|
flake8
|
||||||
jmespath
|
jmespath
|
||||||
|
mypy
|
||||||
|
pytest
|
||||||
requests
|
requests
|
||||||
|
|
7
setup.py
7
setup.py
|
@ -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',
|
||||||
|
),
|
||||||
)
|
)
|
||||||
|
|
6
tox.ini
6
tox.ini
|
@ -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 =
|
||||||
|
|
Loading…
Reference in a new issue