-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (71 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
79 lines (71 loc) · 1.66 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aitviewer"
dynamic = ["version"]
description = "Viewing and rendering of sequences of 3D data."
readme = "README.md"
requires-python = ">=3.10,<3.13"
authors = [
{ name = "Manuel Kaufmann" },
{ name = "Velko Vechev" },
{ name = "Dario Mylonopoulos" },
]
keywords = [
"viewer",
"moderngl",
"machine learning",
"sequences",
"smpl",
"computer graphics",
"computer vision",
"3D",
"meshes",
"visualization",
]
dependencies = [
"torch>=1.6.0",
"numpy>=1.18",
"opencv-contrib-python-headless>=4.5.1.48",
"smplx",
"moderngl-window==3.1.1",
"moderngl==5.12.0",
"imgui==2.0.0",
"tqdm>=4.60.0",
"trimesh>=4.4,<5",
"scipy>=1.5.2",
"omegaconf>=2.1.1",
"roma>=1.2.3",
"joblib",
"scikit-image>=0.9.0",
"Pillow",
"websockets",
"usd-core>=23.5",
"black>=26.3.0",
"isort",
"PyQt6>=6.5.2",
]
[project.optional-dependencies]
pyqt5 = ["PyQt5>=5.15.4"]
[project.urls]
Documentation = "https://eth-ait.github.io/aitviewer/"
Source = "https://github.com/eth-ait/aitviewer"
"Bug Tracker" = "https://github.com/eth-ait/aitviewer/issues"
[tool.setuptools.packages.find]
include = ["aitviewer*"]
[tool.setuptools.dynamic]
version = {attr = "aitviewer.__version__"}
[tool.isort]
profile = "black"
[tool.black]
line-length = 120
target-version = ['py310']
[tool.pytest.ini_options]
addopts = "-rs"
testpaths = ["tests"]
filterwarnings = [
"ignore::DeprecationWarning:chumpy.*:",
"ignore::DeprecationWarning:skvideo.*:",
"ignore::DeprecationWarning:smplx.*:",
]