-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (54 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
64 lines (54 loc) · 1.29 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
[project]
name = "OpenArc"
version = "2.0"
description = "OpenArc is an inference server for OpenVINO AI models."
authors = [
{name = "Emerson Tatelbaum", email = "etatelbaum.psc@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"click>=8.2.1",
"ddgs>=9.6.1",
"fastapi>=0.116.1",
"huggingface-hub[cli]>=0.33.4",
"ipykernel>=7.0.1",
"ipywidgets>=8.1.7",
"kokoro>=0.9.4",
"librosa>=0.11.0",
"misaki[en]>=0.9.4",
"openai>1.109.1",
"openai-agents>=0.4.2",
"openvino-genai>=2025.3.0.0",
"optimum[openvino]>1.26.1",
"pip>=25.2",
"pydantic>=2.11.7",
"pynput>=1.8.1",
"pytest>=8.4.2",
"pyyaml>=6.0.2",
"rich-click>=1.8.9",
"smolagents>=1.22.0",
"sounddevice>=0.5.2",
"soundfile>=0.13.1",
"torch>=2.11.0",
"torchvision>=0.23.0",
"uvicorn>=0.35.0",
"zensical>=0.0.31",
]
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["src"]
[project.scripts]
openarc = "src.cli:cli"
[tool.uv]
dev-dependencies = []
package = true
[[tool.uv.index]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
explicit = true
[tool.uv.sources]
torch = { index = "pytorch-cpu" }
torchvision = { index = "pytorch-cpu" }