26 lines
473 B
INI
26 lines
473 B
INI
[options.extras_require]
|
|
# Used to run the tests inside the CICD pipeline
|
|
ci =
|
|
tox==3.24.5
|
|
|
|
# Used inside Tox for running tests
|
|
test =
|
|
pytest==6.2.4
|
|
pytest-cov==2.12.1
|
|
|
|
# Used inside tox for linting
|
|
lint =
|
|
black==20.8b1
|
|
flake8==3.9.2
|
|
flake8-bugbear==21.4.3
|
|
flake8-comprehensions==3.5.0
|
|
flake8-docstrings==1.6.0
|
|
flake8-print==4.0.0
|
|
flake8-quotes==3.2.0
|
|
|
|
# Required for the developer
|
|
develop =
|
|
%(ci)s
|
|
%(lint)s
|
|
jedi==0.18.0
|