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

[packages]
pytest-launchable = {editable = true, path = "."}

[dev-packages]
pytest = ">= 4.2.0"
mypy = "*"
wheel = "*"
setuptools = "*"
setuptools-scm = "*"
types-PyYAML = "*"
flake8 = ">=5.0.4"
autopep8 = "*"

[requires]
python_version = "3.7"

[scripts]
test = "python -m pytest tests"
type = "mypy pytest_launchable tests yaml2obj launchable_cli_args"
build = "python setup.py sdist bdist_wheel"
format = "autopep8 -ivr ."
install = "pip install -U ."
lint = "flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics"
lint-warn = "flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics"
