-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 969 Bytes
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 969 Bytes
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
[tool.poetry]
name = "cahsr-eifd"
version = "0.1.0"
description = ""
authors = ["Joey Shoyer <jshoyer@umich.edu>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
# Use Python 3.11 for geospatial + arcgis compatibility
python = ">=3.11,<3.12"
# Core packages
geopandas = ">=0.14,<0.15" # 0.14.x is compatible with py3.11 + shapely 2
pandas = ">=2.2,<3.0" # stable with geopandas
shapely = ">=2.0,<3.0"
matplotlib = "^3.8"
contextily = "^1.6"
rtree = "^1.2"
tqdm = "^4.67"
numpy = "^1.26" # compatible with scipy + shapely
scipy = "^1.11"
# ArcGIS Python API (supported on py3.11)
arcgis = "^2.3.0"
# Optional: requests (used in your downloader scripts)
requests = "^2.32"
fiona = "^1.10.1"
pyogrio = "^0.12.1"
pyproj = "^3.7.2"
openpyxl = "^3.1.5"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.5"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"