-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (32 loc) · 867 Bytes
/
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
[project]
name = "tinyhumans"
version = "0.1.0"
description = "Centralized library to deal with SMPL-family models"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"torch>=2.5.1",
"pytorch3d>=0.7.8",
"plotly>=5.24.1", # pytorch3d dependency for mesh viewer
"tensordict>=0.6.2",
"smplx>=0.1.28",
"trimesh>=4.5.3",
"pyrender>=0.1.45",
"rich>=13.9.4",
"omegaconf>=2.3.0", # currently used by vposer
]
[tool.uv.sources]
pytorch3d = { git = "https://github.com/facebookresearch/pytorch3d"}
tensordict = { git = "https://github.com/pytorch/tensordict", rev = "070ca618bcc6b7fadcb4955a1016ca31babd6e36" }
[tool.uv]
no-build-isolation-package = ["pytorch3d"]
[dependency-groups]
demo = [
"notebook>=7.3.2",
]
dev = [
"pytest>=8.3.4",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"