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

[dev-packages]
flake8 = "*"
setuptools = ">=30.3.0"
setuptools-scm = "*"
wheel = "*"
autopep8 = "*"
importlib-metadata = "*"
responses = "*"
mypy = "*"

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

[scripts]
build = "python setup.py sdist bdist_wheel"
install = "pip install -U ."
test = "python -m unittest"
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"
format = "autopep8 -ivr ."
type = "mypy launchable tests"