-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
82 lines (72 loc) · 1.63 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
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
74
75
76
77
78
79
80
81
82
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 120
lint.select = ["E", "F"]
lint.extend-select = ["I"]
lint.ignore = ["E501"]
fix = true
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
docstring-code-format = true
docstring-code-line-length = 160
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.setuptools.packages.find]
include = ["focoos**"]
[project]
name = "focoos"
version = "0.9.0"
description = "Focoos SDK"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"requests",
"Pillow~=10.2.0",
"supervision~=0.25.1",
"opencv-python~=4.11.0",
"pydantic~=2.10.5",
"pydantic-settings~=2.7.1",
"tqdm~=4.67.1",
"numpy~=2.2.1",
"scipy~=1.14.1",
"gputil~=1.4.0",
"psutil~=6.1.1",
"setuptools~=75.7.0",
"matplotlib~=3.10.0",
"colorama~=0.4.6",
"ipython"
]
authors = [{ name = "focoos.ai", email = "[email protected]" }]
keywords = [
"computer_vision",
"object_detection",
"segmentation",
"model_serving",
]
[project.optional-dependencies]
cpu = ["onnxruntime==1.20.1"]
cuda = ["onnxruntime-gpu==1.20.1"]
tensorrt = ["onnxruntime-gpu==1.20.1","tensorrt==10.5.0"]
torch = ["torch==2.3.0","torchvision"]
dev = [
"pytest",
"pytest-cov",
"pytest-mock",
"ruff",
"python-dotenv",
"gradio~=5.10.0",
"pre-commit~=4.0.1",
"sniffio~=1.3.1",
"ipykernel~=6.29.5",
"tox",
"tox-uv",
]
docs = [
"mkdocs>=1.6.0,<2.0.0",
"mkdocs-material>=9.5.28,<10.0.0",
"mkdocstrings[python]>=0.25.1,<0.26.0",
"mkdocs-include-markdown-plugin>=6.2.1,<7.0.0",
]