-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (65 loc) · 1.93 KB
/
pyproject.toml
File metadata and controls
73 lines (65 loc) · 1.93 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
# SPDX-FileCopyrightText: 2024-2025 Authors (see AUTHORS.txt)
#
# SPDX-License-Identifier: Apache-2.0
[build-system]
requires = ["scikit-build-core"]
build-backend = "scikit_build_core.build"
[project]
name = "pyluxcore"
dynamic = ["version"]
dependencies = [
"numpy >= 2; python_version > '3.8'",
"numpy < 2; python_version <= '3.8'",
"nvidia-cuda-nvrtc-cu12 == 12.8.93; sys_platform != 'darwin'",
]
requires-python = ">= 3.9"
description = "LuxCore Python bindings"
authors = [{name="LuxCoreRender"}]
## See https://pypi.org/classifiers/
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Development Status :: 7 - Inactive",
"Topic :: Multimedia :: Graphics :: 3D Rendering",
]
readme = "README.md"
keywords = [
"raytracing",
"ray tracing",
"rendering",
"pbr",
"physical based rendering",
"path tracing",
]
[project.urls]
Homepage = "https://luxcorerender.org/"
Documentation = "http://wiki.luxcorerender.org/LuxCoreRender_Wiki"
GitHub = "https://github.com/LuxCoreRender/LuxCore"
[project.scripts]
pyluxcoretest = "pyluxcoretest:main"
[tool.scikit-build]
logging.level = "DEBUG"
build.verbose = true
cmake.source-dir = "."
build.targets = ["pyluxcore"]
wheel.cmake = true
wheel.packages = ["python/pyluxcore", "python/pyluxcoretest"]
build-dir = "out"
ninja.make-fallback = false
install.components = ["pyluxcore"]
experimental = true
[tool.scikit-build.cmake.define]
CMAKE_INSTALL_PREFIX = "install"
#CMAKE_TOOLCHAIN_FILE = "out/build/Release/conan_toolchain.cmake"
[tool.scikit-build.metadata.version]
provider = "scikit_build_core.metadata.regex"
regex = "(?P<version>.*)"
input = "SKVERSION"
result = "{version}"
[tool.black]
line-length = 79