-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (38 loc) · 847 Bytes
/
pyproject.toml
File metadata and controls
41 lines (38 loc) · 847 Bytes
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
[project]
name = "videodepthviewer3d"
version = "1.1.0"
description = "Streaming Video Depth viewer backend"
authors = [{ name = "Codex" }]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.115",
"uvicorn[standard]>=0.30",
"pydantic>=2.7",
"pydantic-settings>=2.7",
"python-multipart>=0.0.17",
"av>=12.0",
"numpy>=1.26",
"pillow>=10.4",
"orjson>=3.10"
]
[project.optional-dependencies]
dev = [
"pytest>=8.2",
"pytest-asyncio>=0.24",
"httpx>=0.27",
"ruff>=0.6"
]
inference = [
"torch>=2.4",
"torchvision>=0.19",
"transformers>=4.44",
"einops>=0.8",
"safetensors>=0.4",
"opencv-python-headless>=4.10"
]
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["backend*"]