-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (45 loc) · 1.02 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 = "scale-alibi"
version = "0.1.0"
description = ""
authors = ["Patrick Kage <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "scale_alibi"}]
[tool.poetry.dependencies]
python = ">=3.11,<3.13"
torch = "^2.4.0"
torchvision = "^0.19.0"
pmtiles = "^3.3.0"
rich = "^13.7.1"
httpx = "^0.27.0"
asyncclick = "^8.1.7.2"
# matplotlib = "^3.9.1"
pillow = "^10.4.0"
pydantic = "^2.8.2"
shapely = "^2.0.5"
rio-tiler = "^6.6.1"
rasterio = "^1.3.10"
geojson-pydantic = "^1.1.0"
supermercado = "^0.2.0"
einops = "^0.8.0"
wandb = "^0.17.5"
python-dotenv = "^1.0.1"
pystac-client = "^0.8.3"
pendulum = "^3.0.0"
boto3 = "^1.34.149"
geobench = "^1.0.0"
scikit-learn = "^1.5.2"
numpy = "<2.0.0"
matplotlib = "^3.9.2"
umap-learn = "^0.5.6"
[tool.poetry.scripts]
salibi = "scale_alibi:cli.cli"
[tool.jupyter.kernel]
name = "scale-alibi"
display = "scale-alibi"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"