blob: b1236dfc113a99e8b125419ce97f4b7cb80c4629 [file] [log] [blame]
Gregory P. Smitha7a76542021-05-11 21:58:35 -07001[build-system]
2requires = ["setuptools >= 40.9.0", "wheel"]
3build-backend = "setuptools.build_meta"
4
5[tool.tox]
6legacy_tox_ini = """
7[tox]
8envlist = py{36,37,38,39}
9isolated_build = true
10skip_missing_interpreters = true
11# minimum tox version
12minversion = 3.3.0
13[testenv]
14deps =
15 check-manifest >= 0.42
16 pytest
17commands =
18 check-manifest --ignore 'src/tests/**'
19 python -c 'from setuptools import setup; setup()' check -m -s
Gregory P. Smithc33bdd52021-05-24 15:29:39 -070020 py.test -s {posargs}
Gregory P. Smitha7a76542021-05-11 21:58:35 -070021"""