blob: fa2cd65afa0ae53953862f518d9d8776a5e03066 [file] [log] [blame]
[build-system]
requires = ["setuptools >= 40.9.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py{36,37,38,39}
isolated_build = true
skip_missing_interpreters = true
# minimum tox version
minversion = 3.3.0
[testenv]
deps =
check-manifest >= 0.42
pytest
commands =
check-manifest --ignore 'src/tests/**'
python -c 'from setuptools import setup; setup()' check -m -s
pip install --upgrade build
python -m build
py.test {posargs}
"""