mirror of
https://github.com/JockeTF/fimfarchive.git
synced 2024-11-22 05:17: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
|
||||
bbcode
|
||||
blinker
|
||||
flake8
|
||||
jmespath
|
||||
mypy
|
||||
pytest
|
||||
requests
|
||||
|
|
7
setup.py
7
setup.py
|
@ -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',
|
||||
),
|
||||
)
|
||||
|
|
6
tox.ini
6
tox.ini
|
@ -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 =
|
||||
|
|
Loading…
Reference in a new issue