-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
43 lines (35 loc) · 1.25 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
[project.urls]
GitHub = "https://github.com/BrokenSource/ShaderFlow"
Changelog = "https://brokensrc.dev/about/changelog"
Funding = "https://brokensrc.dev/about/sponsors"
Contact = "https://brokensrc.dev/about/contact"
Download = "https://brokensrc.dev/get/releases"
Docs = "https://brokensrc.dev/shaderflow"
Homepage = "https://brokensrc.dev"
[project]
name = "shaderflow"
description = "🔥 Imagine ShaderToy, on a Manim-like architecture. That's ShaderFlow."
authors = [{name="Tremeschin", email="29046864+Tremeschin@users.noreply.github.com"}]
dynamic = ["version"]
readme = "readme.md"
license = "AGPL-3.0"
requires-python = ">=3.10"
dependencies = [
"broken-source[shaderflow] @ git+https://github.com/BrokenSource/BrokenSource",
]
[project.scripts]
shaderflow = "ShaderFlow.__main__:main"
shader = "ShaderFlow.__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["ShaderFlow"]
[tool.hatch.build.targets.wheel.force-include]
"Examples" = "ShaderFlow/Resources/Examples"
[tool.hatch.metadata.hooks.custom]
path = ".github/hatch_build.py"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.sdist]
exclude = ["*"]