-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (64 loc) · 2 KB
/
Copy pathpyproject.toml
File metadata and controls
73 lines (64 loc) · 2 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "ai-comms-platform"
description = "Headless multimodal inference API with isolated TTS, TTI, and TT3D worker processes"
version = "0.3.0"
requires-python = ">=3.12,<3.13"
dependencies = [
"torch==2.6.0+cu124; platform_system == 'Windows' and python_version == '3.12'",
"torchvision==0.21.0+cu124; platform_system == 'Windows' and python_version == '3.12'",
"torchaudio==2.6.0+cu124; platform_system == 'Windows' and python_version == '3.12'",
"transformers>=4.40.0,<5",
"diffusers>=0.30.0",
"accelerate>=0.33.0",
"safetensors>=0.4.5",
"Pillow>=10.3.0",
"supertonic",
"python-dotenv>=1.0.0",
"fastapi>=0.111.0",
"uvicorn[standard]>=0.29.0",
]
[project.optional-dependencies]
gpu = [
"xformers==0.0.29.post2",
"triton-windows>=3.2.0.post21,<3.3; platform_system == 'Windows'",
]
tti = []
tt3d = [
"einops>=0.8.0",
"timm>=1.0.0",
"torchdiffeq>=0.2.0",
"scipy>=1.11.0",
"opencv-python>=4.8.0",
"imageio>=2.34.0",
"trimesh>=4.0.0",
"rembg>=2.0.50",
"omegaconf>=2.3.0",
"pyyaml>=6.0.0",
"tqdm>=4.66.0",
"pytorch-lightning>=2.0.0",
"lightning-utilities>=0.10.0",
]
[dependency-groups]
dev = ["pytest>=8.2.0"]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.uv]
default-groups = ["dev"]
environments = ["python_version == '3.12' and platform_system == 'Windows'"]
[[tool.uv.index]]
name = "pytorch-cu124"
url = "https://download.pytorch.org/whl/cu124"
explicit = true
[tool.uv.sources]
torch = [{ index = "pytorch-cu124", marker = "platform_system == 'Windows' and python_version == '3.12'" }]
torchvision = [{ index = "pytorch-cu124", marker = "platform_system == 'Windows' and python_version == '3.12'" }]
torchaudio = [{ index = "pytorch-cu124", marker = "platform_system == 'Windows' and python_version == '3.12'" }]
[tool.pytest.ini_options]
filterwarnings = [
"ignore:Using `httpx` with `starlette.testclient` is deprecated; install `httpx2` instead\\.:",
]