-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
36 lines (30 loc) · 915 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
[build-system]
requires = [
"setuptools>=42",
"wheel",
"ninja; sys_platform != 'win32'",
"cmake>=3.12",
]
build-backend = "setuptools.build_meta"
[project]
name = "xatlas"
requires-python = ">=3.7"
version = "0.0.9"
authors = [{name = "Markus Worchel", email = "[email protected]"}]
license = {file = "LICENSE"}
description = "Python bindings for xatlas"
urls = {Homepage = "https://github.com/mworchel/xatlas-python"}
dependencies = ["numpy"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.optional-dependencies]
test = ["trimesh",
"pytest"]
[tool.cibuildwheel]
# Run the package tests on every wheel using `pytest`
test-command = "pytest {package}/tests"
# will install pytest and other packages in the `test` extra
test-extras = ["test"]
# Skip PyPy on Windows as it doesn't appear to have numpy wheels
skip = ["pp*-win*", "*musllinux_i686"]