-
Notifications
You must be signed in to change notification settings - Fork 45
/
environment.yml
44 lines (43 loc) · 997 Bytes
/
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
# List of conda and pip packages that should be installed when developing the packages
# To create the full conda environment: ``conda env create -f environment.yml``
# All *required* packages should also be in setup.cfg!
name: pytesmo
channels:
- conda-forge
- defaults
dependencies:
- numpy>=2.0.0
- numba
- scipy>=0.12
- pandas>=0.23.0
- netcdf4>=1.0.1,!=1.6.2
- cython>=0.29.21
- scikit-learn
- pykdtree
- pyresample
- matplotlib>=1.2.0
- pip
# optional, for documentation and testing:
# - nb_conda
# ----------------------------------------
- pip:
- pynetcf>=0.4.0
- pygeogrids
- pygeobase>=0.6.0
- more_itertools
- build
- repurpose>=0.7.1
- cadati>=0.0.2
# optional, for documentation and testing:
- nbconvert
- ipykernel
- sphinx_rtd_theme
- ascat>=2.0
- ismn==1.5.1
- pytest
- pytest-cov
- pytest-mpl
- pre-commit
- flake8
- yapf
# ----------------------------------------