-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.92 KB
/
pyproject.toml
File metadata and controls
55 lines (49 loc) · 1.92 KB
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
[project]
name = "avalanche-scenario-mapper"
description = "Avalanche Scenario Mapper (Step 16: Scenario Filtering and Visualization)"
requires-python = ">=3.9,<3.12"
# ----------------------------------------------------------------------
# Core Python dependencies (minimal, portable)
# ----------------------------------------------------------------------
dependencies = [
"pandas",
"geopandas",
"pyarrow",
"shapely",
"requests", # only needed for CAAML v6 online integration
]
# ----------------------------------------------------------------------
# Pixi PROJECT configuration
# ----------------------------------------------------------------------
[tool.pixi.project]
channels = ["https://prefix.dev/conda-forge"]
platforms = ["linux-64", "win-64", "osx-64"]
# ----------------------------------------------------------------------
# Conda-level dependencies (GDAL/Fiona/PROJ stack)
# ----------------------------------------------------------------------
[tool.pixi.dependencies]
python = "3.11.*"
proj = "9.5.*"
gdal = "3.10.*"
fiona = "1.10.*"
rasterio = "1.4.*"
pyproj = "3.7.*"
pyarrow = "*"
# ----------------------------------------------------------------------
# Tasks
# ----------------------------------------------------------------------
[tool.pixi.tasks]
mapper = { cmd = "python runAvaScenMapper.py", cwd = "." }
# ----------------------------------------------------------------------
# Environments
# ----------------------------------------------------------------------
[tool.pixi.environments]
dev = { features = [] }
# ----------------------------------------------------------------------
# Runtime environment variables
# ----------------------------------------------------------------------
[tool.pixi.activation.env]
NUMBA_CAPTURED_ERRORS = "new_style"
CPL_LOG = "/dev/null"
GDAL_PAM_ENABLED = "NO"
GDAL_DISABLE_READDIR_ON_OPEN = "EMPTY_DIR"