# Code formatter
# ------------------------------------------------------------------------------
black==22.3.0  # https://github.com/psf/black
pyupgrade==2.32.1;python_version>"3.6"  # https://github.com/asottile/pyupgrade

# Code quality
# ------------------------------------------------------------------------------
flake8==4.0.1  # https://github.com/PyCQA/flake8
flake8-isort==4.1.1  # https://github.com/gforcada/flake8-isort
flake8-bugbear==22.4.25  # https://github.com/PyCQA/flake8-bugbear
flake8-pyi==22.4.1;python_version>"3.6"  # https://github.com/ambv/flake8-pyi
flake8-pyi<22.4;python_version<="3.6"
flake8-quotes==3.3.1  # https://github.com/zheller/flake8-quotes
flake8-implicit-str-concat==0.3.0;python_version>"3.6"  # https://github.com/keisheiled/flake8-implicit-str-concat
flake8-implicit-str-concat<0.3.0;python_version<="3.6"

# Code linter
# ------------------------------------------------------------------------------
pylint==2.13.8  # https://github.com/PyCQA/pylint

# Type check
# ------------------------------------------------------------------------------
mypy==0.950;python_version>"3.6"  # https://github.com/python/mypy
types_setuptools==57.4.14  # https://github.com/python/typeshed
typeguard==2.13.3  # https://github.com/agronholm/typeguard

# Security check
# ------------------------------------------------------------------------------
bandit==1.7.4;python_version>"3.6"  # https://github.com/PyCQA/bandit
safety==1.10.3;python_version>"3.6"  # https://github.com/pyupio/safety

# Code quality
# ------------------------------------------------------------------------------
coverage==6.3.2;python_version>"3.6"  # https://github.com/nedbat/coveragepy
coverage<6.2;python_version<="3.6"
coveralls==3.3.1  # https://github.com/marketplace/coveralls
