-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo_environment.yml
57 lines (47 loc) · 1.04 KB
/
demo_environment.yml
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
56
57
name: catalog_to_xpublish_demo
channels:
- conda-forge
- pyviz
- nodefaults
# a larger environment for Catalog-To-Xpublish to support development and demos
dependencies:
- python =3.11
# For data processing
- xpublish
- xarray
- dask
# For catalog access
- intake
- intake-xarray
- pystac
# For API access and data formats
- fsspec
- s3fs
- h5netcdf
- h5pyd
- zarr
# xpublish plugins
- xpublish-opendap
- xpublish-edr
# for demo
- jupyterlab
- ipympl
- nodejs
# get holoviews libs from pyviz
- holoviews >=1.12.0
- hvplot
- geoviews >=1.6.2 # pinned to avoid this issue: https://github.com/holoviz/geoviews/issues/334
# Dev tools: Language Server Protocol (LSP)
- python-lsp-server # LSP extension for Python (pylsp), including:
- pylsp-mypy # MyPy type checking for Python >=3.7.
- jupyterlab-lsp
- pydantic
# Dev tools: For testing and pre-commit hooks
- pytest
- pytest-cov
- pre-commit
# Package management
- conda
- conda-build
- conda-libmamba-solver
- pip