[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]

[dev-packages]
pytest = ">=7.0"
pytest-cov = ">=4.0"
flake8 = ">=6.0"
black = ">=23.0"
isort = ">=5.12"
mypy = ">=1.0"
pre-commit = ">=3.0"
pyyaml = ">=6.0"
types-pyyaml = ">=6.0"
tomli-w = ">=1.0"
tomli = ">=2.0.0"

[scripts]
test = "pytest"
test-cov = "pytest --cov=casconf --cov-report=term-missing"
lint = "flake8 casconf tests"
format = "black casconf tests"
format-check = "black --check casconf tests"
sort-imports = "isort casconf tests"
sort-imports-check = "isort --check-only casconf tests"
typecheck = "mypy casconf"
