-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 1.59 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
exclude = ["images","test*",] # exclude packages matching these glob patterns (empty by default)
namespaces = true # to disable scanning PEP 420 namespaces (true by default)
[project]
name = "cvias"
version = "0.1.4-dev"
authors = [
{ name = "Coargus Engineering", email = "engineering@coargus.com" },
]
description = "Computer Vision Model Inferencing Server."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"torch==2.4.0",
"torchvision==0.19.0",
"torchaudio==2.4.0",
"opencv-python==4.10.0.84",
"transformers==4.47.0",
"vllm==0.6.3.post1",
"cog_cv_abstraction@git+https://github.com/Coargus/computer-vision-model-abstraction.git@v0.0.5-dev",
"cogutil@git+https://github.com/Coargus/cogutil.git@v0.0.1",
"cogcvutil@git+https://github.com/Coargus/cogcvutil.git",
"calibrate_cv@git+https://github.com/Coargus/computer-vision-model-calibration.git",
"vflow@git+https://github.com/Coargus/vflow@v0.0.3-dev",
"ultralytics",
]
[project.urls]
"Homepage" = "https://github.com/Coargus/computer-vision-model-server"
"Bug Tracker" = "https://github.com/Coargus/computer-vision-model-server/issues"
[project.optional-dependencies]
dev = ["black", "ruff", "mypy"]
test = ["pytest", "pytest-cov", "pytest-mock"]