-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (35 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
34
35
36
37
38
39
40
41
[tool.poetry]
name = "fishsense-lite"
version = "0.1.0"
description = ""
authors = []
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
pyFishSenseDev = { git = "https://github.com/UCSD-E4E/pyFishSenseDev", branch = "main" }
pyFishSense = { git = "https://github.com/UCSD-E4E/pyFishSense", branch = "main" }
fishsense-common = {git = "https://github.com/UCSD-E4E/fishsense-common", rev = "main"}
matplotlib = "^3.8.0"
pandas = "^2.1.1"
ray = "^2.9.3"
gitpython = "^3.1.42"
backoff = "^2.2.1"
xlrd = "^2.0.1"
seaborn = "^0.13.2"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.26.0"
black = "^24.3.0"
pylint = "^3.2.0"
ipywidgets = "^8.1.5"
[[tool.poetry.source]]
name = "torch"
url = "https://download.pytorch.org/whl/cu124"
priority = "supplemental"
[tool.poetry.scripts]
fsl = "fishsense_lite.run:main"
[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"