-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 917 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 917 Bytes
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
[project]
name = "meshtaichi_patcher"
version = "0.0.13"
authors = [
{ name="BillXu2000", email="BillXu2000@126.com" },
]
dependencies = ["meshio", "numpy"]
description = "a mesh patcher for meshtaichi"
readme = "readme.md"
requires-python = ">=3.7"
[project.urls]
"Homepage" = "https://github.com/BillXu2000/meshtaichi_patcher"
[build-system]
requires = [
"setuptools>=42",
"wheel",
"ninja",
"cmake>=3.12",
]
build-backend = "setuptools.build_meta"
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config"]
xfail_strict = true
filterwarnings = ["error"]
testpaths = ["tests"]
[tool.cibuildwheel]
test-command = "pytest {project}/tests"
test-extras = ["test"]
test-skip = ["*universal2:arm64"]
# Setuptools bug causes collision between pypy and cpython artifacts
before-build = "rm -rf {project}/build"