-
Notifications
You must be signed in to change notification settings - Fork 37
/
environment.yml
61 lines (58 loc) · 1.34 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
54
55
56
57
58
59
60
61
name: goes2go
channels:
- conda-forge
dependencies:
- python>=3.11
- pip
- git
- rclone >= 1.58.0 # Not required by goes2go, but is an awesome alternative https://rclone.org/
# -----
# Tools
# -----
- cartopy
- geopandas
- goes2go
- h5netcdf
- jupyter
- jupyterlab
- matplotlib
- metpy
- netcdf4
- numpy
- pandas
- s3fs>=2023.6.0
- toml
- xarray
# -------------------
# Formatter & Testing
# -------------------
- ruff
- black
- black-jupyter
- isort
- pytest
- pip:
# Borrow some tools from my garage
- git+https://github.com/blaylockbk/Carpenter_Workshop.git
###############################################################################
#
# Note: Being more specific with versions *may* help speed up conda
# creating/updating environments
# https://www.anaconda.com/blog/understanding-and-improving-condas-performance
#
###############################################################################
#
# To create this environment
#
# wget https://github.com/blaylockbk/goes2go/raw/main/environment.yml
# conda env create -f environment.yml
#
# To update this environment
#
# conda env update -f environment.yml --prune
#
# To remove this environment
#
# conda env remove --name environment
#
###############################################################################