-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpyproject.toml
33 lines (31 loc) · 1.01 KB
/
pyproject.toml
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
[project]
name = "holocron"
version = "0.2.2.dev0"
description = "Backend template for your Vision API with Holocron"
requires-python = ">=3.11,<4.0"
license = { text = "Apache-2.0" }
authors = [{ name = "François-Guillaume Fernandez", email = "[email protected]" }]
maintainers = [{ name = "François-Guillaume Fernandez", email = "[email protected]" }]
readme = "README.md"
keywords = ["backend", "api", "computer vision", "fastapi", "onnx"]
dependencies = [
"uvicorn>=0.23.0,<1.0.0",
"fastapi>=0.109.1,<1.0.0",
"python-multipart>=0.0.9",
"Pillow>=8.4.0,!=9.2.0",
"onnxruntime>=1.16.3,<2.0.0",
"huggingface-hub>=0.4.0,<1.0.0",
"numpy>=1.19.5,<3.0.0",
"pydantic-settings>=2.0.0,<3.0.0"
]
[project.optional-dependencies]
test = [
"pytest>=8.3.3,<9.0.0",
"pytest-asyncio>=0.17.0,<1.0.0",
"httpx>=0.23.0,<1.0.0",
"pytest-cov>=4.0.0,<5.0.0",
"pytest-pretty>=1.0.0,<2.0.0",
"httpx>=0.23.0,<1.0.0",
"requests>=2.32.0,<3.0.0",
"asyncpg>=0.29.0,<1.0.0"
]