-
Notifications
You must be signed in to change notification settings - Fork 658
/
pyproject.toml
44 lines (38 loc) · 1.16 KB
/
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
43
[build-system]
requires = ["scikit_build_core", "nanobind"]
build-backend = "scikit_build_core.build"
[project]
name = "openvdb"
version = "12.0.1"
description= "Python bindings for OpenVDB: sparse volume data structure and tools."
dependencies = [
"numpy",
]
authors = [
{ name = "OpenVDB Developer Team", email = "[email protected]" },
]
requires-python = ">=3.10"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.urls]
homepage = "https://www.openvdb.org/"
documentation = "https://www.openvdb.org/documentation"
forum = "https://github.com/AcademySoftwareFoundation/openvdb/discussions"
repository = "https://github.com/AcademySoftwareFoundation/openvdb"
slack = "https://slack.aswf.io/"
[tool.scikit-build]
wheel.packages = []
[tool.scikit-build.cmake.define]
OPENVDB_CORE_STATIC="OFF"
USE_EXPLICIT_INSTANTIATION="OFF"
DISABLE_DEPENDENCY_VERSION_CHECKS="ON"
OPENVDB_USE_DELAYED_LOADING="OFF"
OPENVDB_BUILD_PYTHON_MODULE="ON"
USE_NUMPY="ON"
USE_NANOVDB="ON"
NANOVDB_USE_CUDA="ON"
NANOVDB_BUILD_PYTHON_MODULE="ON"
NANOVDB_USE_OPENVDB="ON"