1
+ name : icechunk
2
+ channels :
3
+ - conda-forge
4
+ # - nodefaults # Speeds solving env, by limiting the number of options
5
+
6
+ dependencies :
7
+ - python =3.12
8
+
9
+ # Data Engine
10
+ - icechunk # installs zarr3
11
+
12
+ # Data processing
13
+ - geopandas # installs shapely, pyarrow, pyogrio, libgdal, networkx
14
+ - xarray
15
+ - rioxarray
16
+ - dask
17
+
18
+ # Remote Access
19
+ - fsspec
20
+ - s3fs # Access to Amazon S3 filesystem
21
+ - cdsapi # Access to Copernicus Data System for ERA5
22
+
23
+
24
+ # # HyRiver packages for data fetching
25
+ # - pygeoogc # Retrieve Data from RESTful, WMS, and WFS Services
26
+ # - async-retriever # Asynchronous requests with persistent caching
27
+
28
+ # # Visualization (optional)
29
+ # - hvplot # hvPlot installs most HoloViz libs, https://holoviz.org
30
+ # - geoviews
31
+ # - contextily # for static plotting
32
+
33
+ # # Interactivity via Jupyter Notebooks
34
+ # - jupyterlab
35
+ # - nodejs # required for many extensions
36
+ # - ipympl # jupyter-matplotlib, https://github.com/matplotlib/ipympl
37
+ # - ipywidgets # Interactive HTML widgets for Jupyter
38
+ # - ipywidgets_bokeh
39
+ # - jupyter_bokeh # Renders Holviz / Bokeh objects in Jupyter
40
+ # - pyviz_comms # bidirectional communication between Python & JavaScript for Jupyter
41
+
42
+ # Dev tools: Language Server Protocol (LSP) (Optional)
43
+ - python-lsp-server # LSP extension for Python (pylsp), including:
44
+ - pylsp-mypy # MyPy type checking for Python >=3.7.
45
+ # - jupyterlab-lsp # Provides both server extension and lab extension
46
+
47
+ # Environment and package management
48
+ - conda
49
+ - conda-build
50
+ - conda-libmamba-solver # Faster env solver, https://conda.github.io/conda-libmamba-solver/
51
+ - pip
52
+ - git # for pip installing directly from GitHub
53
+ # PIP install requirements only if it is not possible with conda
54
+ - pip :
55
+ # -
0 commit comments