-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (76 loc) · 1.87 KB
/
pyproject.toml
File metadata and controls
82 lines (76 loc) · 1.87 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[project]
name = "rapidobj"
version = "0.1.5"
description = "Fast OBJ parser with Python bindings"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.12"
dependencies = [
"numpy",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: C++",
"Topic :: Multimedia :: Graphics :: 3D Modeling",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/dhh/rapidobj-play"
Repository = "https://github.com/dhh/rapidobj-play"
Issues = "https://github.com/dhh/rapidobj-play/issues"
[build-system]
requires = ["scikit-build-core>=0.12", "nanobind>=2.4.0"]
build-backend = "scikit_build_core.build"
[tool.scikit-build]
minimum-version = "0.12"
build-dir = "build/{wheel_tag}"
sdist.inclusion-mode = "manual"
sdist.include = [
"CMakeLists.txt",
"LICENSE",
"README.md",
"RELEASE.md",
"examples/parse_basic.py",
"examples/parse_error.py",
"py.typed",
"pyproject.toml",
"rapidobj.pyi",
"src/rapidobj.hpp",
"src/rapidobj_ext.cpp",
"tests/smoke_test.py",
]
sdist.exclude = [
".git/*",
".envrc",
".python-version",
".venv/*",
".venv/**",
"benchmark",
"benchmark.cpp",
"benchmark.py",
"benchmark_overhead.py",
"build/*",
"build/**",
"dist",
"dist/*",
"dist/**",
"feature_parity.py",
"main.cpp",
"main.py",
"out.ipc",
]
[tool.cibuildwheel]
build = "cp312-* cp313-* cp314-*"
skip = "pp* *-musllinux_*"
build-verbosity = 1
test-command = "python {project}/tests/smoke_test.py"
[tool.cibuildwheel.linux]
archs = ["x86_64"]
[tool.cibuildwheel.windows]
archs = ["AMD64"]