-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (43 loc) · 1.06 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
[tool.poetry]
name = "hakai-ctd-qc"
version = "1.0.0"
description = "Hakai Automated Quality Control for CTD profiles"
authors = ["Jessy Barrette <30420025+JessyBarrette@users.noreply.github.com>"]
readme = "README.md"
packages = [
{ include = "hakai_ctd_qc" }
]
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
pandas = "^2.1.2"
gsw = "^3.6.17"
ioos-qc = "^2.1.0"
hakai-api = "^1.5.1"
tqdm = "^4.66.1"
PyYAML = "^6.0.1"
sentry-sdk = {extras = ["loguru"], version = "^2.7.1"}
click = "^8.1.7"
pyarrow = "^13.0.0"
fastparquet = "^2023.10.1"
python-dotenv = "^1.0.0"
loguru = "^0.7.2"
fastapi = "^0.112.1"
scheduler = "^0.8.7"
uvicorn = "^0.30.6"
toml = "^0.10.2"
apscheduler = "^3.10.4"
cron-descriptor = "^1.4.3"
panel = "^1.4.5"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
ruff = "^0.1.3"
black = {extras = ["jupyter"], version = "^24.4.2"}
isort = "^5.13.2"
httpx = "^0.27.0"
[tool.poetry.group.review.dependencies]
sqlalchemy = "^2.0.31"
[sqlfluff]
dialect = "postgres"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"