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

[requires]
python_version = "3.5.9"

[dev-packages]
flake8 = "*"
setuptools = ">=30.3.0"
setuptools-scm = "*"
wheel = "*"
autopep8 = "*"
importlib-metadata = "*"
responses = "*"
mypy = "*"
types-click = "*"
types-python-dateutil = "*"
types-requests = "*"
types-pkg_resources = "*"
types-tabulate = "*"
unittest-xml-reporting = "*"

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

[scripts]
build = "python setup.py sdist bdist_wheel"
install = "pip install -U ."
test = "python -m unittest"
test-xml = "python -m test-runner"
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"
