-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpixi.toml
55 lines (45 loc) · 1.29 KB
/
pixi.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
[project]
authors = ["Scott Henderson <[email protected]>"]
channels = ["conda-forge"]
description = "Add a short description here"
name = "stv-aux-data"
platforms = ["osx-arm64", "linux-64"]
version = "0.1.0"
[feature.wesm.tasks]
wesm2geoparquet = "python wesm_gpkg_to_geoparquet.py"
[feature.pdal.tasks]
pdal = "python pdal_pipeline.py"
[feature.coincident.tasks]
get_maxar = "python get_maxar_browse.py"
[dependencies]
# Unconstrained latest version of geopandas
geopandas = "*"
ipython = ">=8.29.0,<9"
ipykernel = ">=6.29.5,<7"
[feature.wesm.dependencies]
# NOTE: cloudpathlib-s3 doesn't play well with botocore stac-asset dependencies...
cloudpathlib-s3 = ">=0.20.0,<0.21"
[feature.test.dependencies]
geopandas = "<1"
shapely = "<2"
rtree = "*"
pyogrio = "*"
[feature.pdal.dependencies]
rasterio = "*"
#rasterio = ">=1.3.6,<2"
# NOTE: libpdal pins arrow to specific version (16) which doesn't work well w/ coincident using latest versions
#pdal = "*"
#python-pdal = ">=3.4.5,<4"
python-pdal="==3.3.0"
numpy=">=1.21.0,<2"
dask = ">=2024.11.2,<2025"
tqdm = ">=4.67.1,<5"
[feature.coincident.dependencies]
rich = "*"
[feature.coincident.pypi-dependencies]
coincident = { git = "https://github.com/uw-cryo/coincident.git"}
[environments]
test = ["test"]
pdal = ["pdal"]
coincident = ["coincident"]
wesm = ["wesm"]