-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (52 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
56 lines (52 loc) · 1.27 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
51
52
53
54
55
56
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "toon3d"
version = "0.0.5"
description = "toon3d package"
requires-python = ">=3.7.3"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
]
dependencies = [
"black",
"h5py",
"mediapy",
"ipykernel",
"kmeans_pytorch",
"kornia>=0.7.0",
"rich>=12.5.1",
"scikit-learn",
"torchtyping",
"transformers==4.35.2",
"tyro>=0.4.0",
"opencv-python",
"colour-science",
"tqdm",
"scikit-image",
"ffmpeg",
"pycocotools",
"matplotlib",
"onnxruntime",
"onnx",
"gdown==5.0.0",
"diffusers>=0.25.1",
"wandb>=0.16.2",
"peft>=0.6.0",
"viser",
"jaxtyping>=0.2.15",
"nerfstudio"
]
[tool.setuptools.packages.find]
include = ["toon3d*"]
[project.entry-points.'nerfstudio.method_configs']
toon3d = "toon3d.toon3d_config:toon3d_config"
[project.scripts]
tnd-download-data = "toon3d.scripts.download_data:entrypoint"
tnd-process-data = "toon3d.scripts.process_data:entrypoint"
tnd-run = "toon3d.scripts.run:entrypoint"
tnd-render = "toon3d.scripts.render:entrypoint"
tnd-server = "toon3d.scripts.server:entrypoint"
tnd-viser-vis = "toon3d.scripts.viser_vis:entrypoint"