-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (52 loc) · 1.5 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# SPDX-FileCopyrightText: 2024 Howetuft
#
# SPDX-License-Identifier: Apache-2.0
[build-system]
requires = ["scikit-build-core"]
build-backend = "scikit_build_core.build"
[project]
name = "pyluxcore"
version = "2.9a1.post14"
dependencies = [
"numpy >= 2; python_version > '3.8'",
"numpy < 2; python_version <= '3.8'",
]
requires-python = ">= 3.8"
description = "LuxCore Python bindings"
authors = [{name="Howetuft"}]
## See https://pypi.org/classifiers/
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.8",
"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 = ["src/pyluxcore", "src/pyluxcoretest"]
build-dir = "build"