-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
37 lines (33 loc) · 896 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[build-system]
requires = [
"scikit-build-core>=0.10",
"pybind11[global]"
]
build-backend = "scikit_build_core.build"
[project]
name = "swisspair"
# version is only for local development, it gets set automatically in CI/CD
version = "0.0.13"
author = "Karel Jilek"
author_email = "[email protected]"
description = "Python bindings for Swiss pairing algorithm for (not only) Magic: The Gathering."
readme = "README.md"
requires-python = ">=3.9"
requires=[]
[tool.cibuildwheel.linux]
before-all = """
yum -y install gmp-devel || apk add gmp-dev
"""
[project.optional-dependencies]
test = ["pytest"]
[tool.pytest.ini_options]
minversion = "8.0"
addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config"]
xfail_strict = true
log_cli_level = "INFO"
filterwarnings = [
"error",
"ignore::pytest.PytestCacheWarning",
]
testpaths = ["tests"]
python_functions = "Given*"