forked from duckietown/apriltags3-py
-
Notifications
You must be signed in to change notification settings - Fork 29
/
pyproject.toml
42 lines (33 loc) · 893 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
38
39
40
41
42
[build-system]
requires = [
"setuptools>=56",
"setuptools_scm[toml]>=3.4.1",
"wheel",
"scikit-build",
"Cython",
"cmake",
"ninja;platform_system != \"Windows\"",
"pupil-pthreads-win;platform_system == \"Windows\"",
]
build-backend = "setuptools.build_meta"
[tool.black]
skip-string-normalization = false
[tool.setuptools_scm]
[tool.pytest-enabler.mypy]
addopts = "--mypy"
[tool.pytest-enabler.cov]
addopts = "--cov"
[tool.cibuildwheel]
archs = ["native"]
skip = "{cp,pp}27-* {cp,pp}35-* pp*"
build-frontend = "build"
test-command = "pytest {package}/tests -v"
before-test = ""
test-requires = ["pytest"]
test-extras = []
manylinux-x86_64-image = "manylinux2014"
[tool.cibuildwheel.windows]
before-build = "pip install \"delvewheel>=1.1.1\" pupil-pthreads-win"
repair-wheel-command = [
"python scripts/repair-wheels-windows.py {wheel} {dest_dir}",
]