forked from LuxCoreRender/LuxCore
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (73 loc) · 2.38 KB
/
pyproject.toml
File metadata and controls
82 lines (73 loc) · 2.38 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
# 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 = [
"nvidia-cuda-nvrtc-cu12 == 12.8.93; sys_platform != 'darwin'",
]
requires-python = ">= 3.10"
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",
"Programming Language :: Python :: 3.14",
"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"
pyluxcore-console = "pyluxcoretools.console.cmd:main"
pyluxcore-maketx = "pyluxcoretools.maketx.cmd:main"
pyluxcore-merge = "pyluxcoretools.merge.cmd:main"
pyluxcore-netmenu = "pyluxcoretools.netmenu.cmd:main"
pyluxcore-netconsole = "pyluxcoretools.netconsole.cmd:main"
pyluxcore-netnode = "pyluxcoretools.netnode.cmd:main"
[project.gui-scripts]
pyluxcore-netconsole-ui = "pyluxcoretools.netconsole.ui:main"
pyluxcore-netnode-ui = "pyluxcoretools.netnode.ui: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", "python/pyluxcoretools"]
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