forked from LuisaGroup/LuisaCompute
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (48 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
50 lines (48 loc) · 1.21 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
[build-system]
requires = [
"ninja",
"pybind11",
"scikit-build-core",
"distlib",
"pyproject-metadata",
"pathspec"
]
build-backend = "scikit_build_core.build"
[project]
name = "luisa"
version = "0.1.6"
description = "A High-Performance Rendering Framework with Layered and Unified Interfaces on Stream Architectures"
readme = "README_Python_en.md"
authors = [
{ name = "LuisaGroup" },
]
homepage = "luisa-render.com"
repository = "https://github.com/LuisaGroup/LuisaCompute"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"pybind11",
"dearpygui",
"sourceinspect",
"numpy",
"pillow",
"astpretty"
]
license = { file = "LICENSE" }
[tool.scikit-build]
cmake.minimum-version = "3.20"
ninja.minimum-version = "1.10"
cmake.args = [
"-DCMAKE_INSTALL_BINDIR=.",
"-DCMAKE_INSTALL_LIBDIR=.",
"-DLUISA_COMPUTE_BUILD_TESTS=OFF"
]
wheel.expand-macos-universal-tags = true
wheel.install-dir = "luisa"