-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (46 loc) · 1.2 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
[tool.poetry]
name = "pyfishsensedev"
version = "0.1.0"
description = ""
authors = ["Christopher L. Crutchfield <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
numpy = "^2.2.1"
opencv-python = "^4.10.0.84"
scikit-image = "^0.25.0"
appdirs = "^1.4.4"
onnxruntime-gpu = "^1.19.2"
kornia = "^0.7.3"
shapely = "^2.0.6"
pymupdf = "^1.24.10"
scikit-learn = "^1.5.2"
transformers = "^4.46.2"
pillow = "^11.0.0"
pywavelets = "^1.7.0"
sam-2 = {git = "https://github.com/facebookresearch/sam2.git"}
torch = "^2.5.1"
torchvision = "^0.20.1"
pyAqua3dDev = { git = "https://github.com/UCSD-E4E/pyAqua3dDev", branch = "main" }
[tool.poetry.group.dev.dependencies]
matplotlib = "^3.9.2"
onnx = "^1.16.2"
onnxoptimizer = "^0.3.13"
pytest = "^8.3.2"
nas-unzip = {git = "https://github.com/UCSD-E4E/synology-download.git"}
tqdm = "^4.66.5"
ipykernel = "^6.26.0"
black = "^24.3.0"
pylint = "^3.2.0"
ipywidgets = "^8.1.5"
[tool.poetry-dynamic-versioning]
enable = true
bump = true
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.pytest.ini_options]
minversion = "8.2"
testpaths = [
"tests",
]