-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (57 loc) · 1.25 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
53
54
55
56
57
58
59
60
61
[tool.poetry]
name = "bodhi-cast"
version = "0.1.0"
description = ""
authors = ["LAPTOP-VCGCOL4V <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
fastapi = "^0.104.1"
requests = "^2.31.0"
asyncpg = "^0.29.0"
sqlalchemy = ">=1.4.28,<2.0"
uvicorn = "^0.24.0.post1"
psycopg2 = "^2.9.9"
celery = "^5.3.5"
redis = "^5.0.1"
cfgrib = "^0.9.10.4"
eccodes = "^1.6.1"
xarray = "^2023.11.0"
shapely = "^2.0.2"
pyproj = "^3.6.1"
netcdf4 = "^1.6.5"
bs4 = "^0.0.1"
debugpy = "^1.8.0"
click = "^8.1.7"
geoalchemy2 = "^0.14.2"
pytest = "^7.4.4"
httpx = "^0.26.0"
watchdog = { extras = ["watchmedo"], version = "^3.0.0" }
odc-stac = "^0.3.8"
pystac-client = "^0.7.5"
jinja2 = "^3.1.2"
apache-airflow = "^2.8.1"
ipykernel = "^6.29.0"
pygrib = "^2.1.5"
confluent-kafka = "^2.3.0"
isort = "^5.13.2"
noaa-coops = "^0.3.2"
tqdm = "^4.66.2"
memray = "^1.11.0"
geopandas = "^0.14.3"
boto3 = "^1.34.49"
alembic = "^1.13.1"
nest-asyncio = "^1.6.0"
numpy = "^1.26.0, <2"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.26.0"
metpy = "^1.5.1"
matplotlib = ">=1.5,<3.8"
cartopy = "^0.22.0"
black = "^23.12.1"
cachetools = "^5.3.2"
basemap = "^1.3.8"
geopandas = "^0.14.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"