-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (28 loc) · 977 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
[project]
name = "pyraymesh"
version = "0.2.4"
description = "A library for ray-mesh intersections on triangular meshes"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Dag Wästberg", email = "[email protected]" }]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering :: Mathematics",
]
dependencies = ["numpy"]
[project.urls]
homepage = "https://github.com/dwastberg/pyraymesh"
[build-system]
requires = ["scikit-build-core", "nanobind", "wheel"]
build-backend = "scikit_build_core.build"
[tool.scikit-build]
wheel.expand-macos-universal-tags = true
build.verbose = true
sdist.exclude = ["*.whl", "*.egg-info", "build", "dist"]
cmake.build-type = "Release"
[tool.uv]
dev-dependencies = ["nanobind>=2.1.0", "pytest>=8.1.0", "trimesh>=4.4.1"]