-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.31 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (43 loc) · 1.31 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "npu-proxy"
version = "0.3.0"
description = "Ollama-compatible API proxy for Intel NPU inference via OpenVINO"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.136.1,<1.0.0",
"uvicorn[standard]>=0.47.0,<1.0.0",
# OpenVINO 2026.1 was the workstation-certified runtime baseline documented in README.md.
"openvino>=2026.1.0,<2027.0.0",
"openvino-genai>=2026.1.0.0,<2027.0.0",
"openvino-tokenizers>=2026.1.0.0,<2027.0.0",
"orjson>=3.11.9,<4.0.0",
"sse-starlette>=3.4.4,<4.0.0",
"pydantic>=2.13.4,<3.0.0",
"httpx>=0.28.1,<1.0.0",
"huggingface_hub>=0.36.0,<1.0.0",
"optimum-intel[openvino]>=1.27.0,<2.0.0",
"sentence-transformers>=5.5.1,<6.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=9.0.3,<10.0.0",
"pytest-asyncio>=1.3.0,<2.0.0",
"pytest-cov>=7.1.0,<8.0.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
testpaths = ["tests"]
addopts = "-v --tb=short"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"e2e: marks full end-to-end behavioral tests",
]
[project.scripts]
npu-proxy = "npu_proxy.cli:main"
[tool.setuptools.packages.find]
where = ["."]