-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
48 lines (44 loc) · 1.08 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
[project]
name = "shaderflow"
description = "🔥 Modular shader engine designed for simplicity and speed"
authors = [{name="Tremeschin"}]
dynamic = ["keywords"]
version = "0.10.0"
readme = "readme.md"
license = "AGPL-3.0"
requires-python = ">=3.10"
dependencies = [
"attrs",
"cyclopts~=4.0",
"dearlog",
"glcontext~=3.0",
"glfw~=2.10",
"imgui-bundle~=1.92",
"moderngl-window~=3.1",
"moderngl~=5.12",
"numpy-quaternion",
"numpy",
"ordered-set~=4.1",
"parsenaut",
"pillow",
"platformdirs~=4.0",
"pooch~=1.0",
"pretty-midi~=0.2",
"pyfluidsynth~=1.3",
"soundcard~=0.4",
"thefuzz~=0.22",
"tqdm~=4.0",
"turbopipe~=1.2.3",
"watchdog~=6.0",
"xxhash",
]
[project.urls]
GitHub = "https://github.com/BrokenSource/ShaderFlow"
[project.scripts]
shaderflow = "shaderflow.__main__:main"
shader = "shaderflow.__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel.force-include]
"examples" = "shaderflow/resources/examples"