25 lines
400 B
INI
25 lines
400 B
INI
|
|
[tox]
|
|
envlist = flake,package,py{36,37,38,39}
|
|
skip_missing_interpreters = true
|
|
|
|
[testenv]
|
|
commands =
|
|
python setup.py test
|
|
|
|
[testenv:flake8]
|
|
skip_install = True
|
|
deps =
|
|
flake8
|
|
commands = flake8 {posargs}
|
|
|
|
[testenv:package]
|
|
skip_install = True
|
|
deps =
|
|
check_manifest
|
|
wheel
|
|
twine
|
|
commands =
|
|
check-manifest -v
|
|
python setup.py sdist bdist_wheel
|
|
python -m twine check dist/*
|