-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (27 loc) · 740 Bytes
/
pyproject.toml
File metadata and controls
29 lines (27 loc) · 740 Bytes
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
[project]
name = "cavitation-bubbles-segmentation"
version = "0.1.0"
description = "Detection, segmentation, and tracking of cavitation bubbles in video using YOLO and ByteTrack"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastapi>=0.129.0",
"huggingface-hub>=1.4.1",
"opencv-python>=4.13.0.92",
"pydantic-settings>=2.13.0",
"pyyaml>=6.0",
"python-jose>=3.5.0",
"python-multipart>=0.0.22",
"roboflow>=1.2.13",
"streamlit>=1.54.0",
"torch>=2.10.0",
"torchvision>=0.25.0",
"ultralytics>=8.4.14",
"uvicorn>=0.41.0",
"clearml>=1.16.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]