-
Notifications
You must be signed in to change notification settings - Fork 25
/
environment.yml
53 lines (50 loc) · 1.03 KB
/
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
name: eomaps
channels:
- conda-forge
dependencies:
- python >= 3.8
- numpy
- scipy
- matplotlib >=3.4
- cartopy >=0.20.0
- descartes
# ------------- to handle data-classification
- mapclassify
# ------------- to handle reprojections
- pyproj
# ------------- to support Dataframes
- pandas
# ------------- to support GeoDataFrames
- geopandas
# --------------for data-shading
- datashader
# --------------for GeoTIFF and NetCDF files
- netcdf4
- xarray
- rioxarray
# --------------for WebMaps
- owslib
- requests
# --------------to support multiple Qt versions
- qtpy
# --------------for jupyter widgets
- ipywidgets
- ipympl
### To run the tests
- coveralls
- pytest
- pytest-cov
- pytest-mpl
# --------------for testing the docs
# (e.g. parsing .rst code-blocks and Jupyter Notebooks)
- docutils
- jupyter
- nbformat
### To build the docs
- docutils
- sphinx
- sphinx-copybutton
- sphinx-design
- myst-nb
- pydata-sphinx-theme
- myst-sphinx-gallery = 0.2.2