-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
31 lines (27 loc) · 1.06 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
[build-system]
requires = ["setuptools>=60", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "panda_utils"
version = "1.6.3"
authors = [
{name = "Toontown: Event Horizon", email = "[email protected]"}
]
description = "PandaUtils includes multiple tools for basic Panda3D automation"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
imagery = ["Pillow>=9.0"]
autopath = ["panda3d~=1.10,!=1.10.13.*"]
runnable = ["platformdirs~=3.5"]
pipeline = ["pyyaml~=6.0", "numpy~=1.24", "panda3d-blend2bam!=1.0.0", "panda3d~=1.10,!=1.10.13.*"]
composer = ["panda_utils[pipeline]", "doit", "pydantic"]
everything = ["panda_utils[imagery]", "panda_utils[autopath]", "panda_utils[runnable]", "panda_utils[composer]"]
[project.urls]
homepage = "https://github.com/toontown-event-horizon/panda-utils"
bugtracker = "https://github.com/toontown-event-horizon/panda-utils/issues"