-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
42 lines (39 loc) · 951 Bytes
/
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
[tool.poetry]
name = "tc-formation"
version = "0.1.0"
description = "TC genesis detection using deep models"
authors = ["Quan Nguyen <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "tc_formation"}]
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
tensorflow = "~2.9.1"
pandas = "^1.5.3"
xarray = "^2023.2.0"
scipy = "^1.10.1"
scikit-learn = "^1.2.1"
basemap = "^1.3.6"
numpy = ">=1.22,<1.24"
scikit-image = "^0.20.0"
tqdm = "^4.64.1"
numpyro = "^0.11.0"
netcdf4 = "^1.6.2"
eccodes = "^1.5.1"
shapely = "^2.0.1"
fiona = "^1.9.1"
matplotlib = ">=1.5,<3.7"
seaborn = "^0.12.2"
ensemble-boxes = "^1.0.9"
arviz = "^0.15.0"
tensorflow-addons = "^0.19.0"
opencv-python = "^4.7.0.72"
basemap-data-hires = "^1.3.2"
[tool.poetry.group.dev.dependencies]
jupyterlab = "^3.6.1"
jupytext = "^1.14.5"
autopep8 = "^2.0.1"
ipywidgets = "^7.2.3.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"