summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 86a15279d14237aff9e115dde5d435deb024c389 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[build-system]
requires = [
    "setuptools>=51",
    "wheel"
]

build-backend = "setuptools.build_meta"


[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-s"
testpaths = [
    "tests"
]
pythonpath = [
  "src"
]