-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathenvironment-dev.yml
99 lines (91 loc) · 2.36 KB
/
environment-dev.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
## Used by Brian for developing Herbie
name: herbie-dev
channels:
- conda-forge
dependencies:
- python>=3.10
- pip
- git
- curl
- rclone # Not required, but is an awesome alternative (https://rclone.org/)
#- wgrib2 # ONLY AVAILABLE ON LINUX. Comment if not using Linux.
# ===========
# Handy Tools
# ===========
- cartopy>=0.20.3
- cfgrib>=0.9.10.1
- eccodes>=2.26.0
- geopandas
- h5py
- jupyter
- jupyterlab
- matplotlib>=3.4.3
- metpy
- netcdf4
- numpy>=1.23.1
- pandas>=1.4.3
- pygrib>=2.1.4
- pylint
- pyproj>=3.3.1
- requests>=2.27.1
- s3fs
- scipy
- toml
- xarray>=2022.6.0
- zarr
# ===================
# Formatter & Testing
# ===================
- black
- black-jupyter
- isort
- pylint
- pytest
- line_profiler
# =============
# Documentation
# =============
- sphinx>=4.4.0
- nbsphinx
- nbconvert>=6.5
- pydata-sphinx-theme # PyData Sphinx Theme (i.e, Numpy, Pandas, MetPy)
- sphinx-design
- recommonmark
- sphinx-markdown-tables
- sphinxcontrib-mermaid # For mermaid diagram support
- autodocsumm
- sphinx-autosummary-accessors # pandas and xarray accessor docs
- latexmk
- myst-parser
- linkify-it-py
- pip:
# Herbie: Development version from GitHub
- git+https://github.com/blaylockbk/Herbie.git
# Install a specific branch
#- git+https://github.com/blaylockbk/Herbie.git@blaylockbk/issue98
# Borrow some tools from my garage
- git+https://github.com/blaylockbk/Carpenter_Workshop.git
# Create idx files on the fly!! -- Waiting for package maturity
#- git+https://github.com/joxtoby/beltzer.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/Herbie/raw/main/environment-dev.yml
# conda env create -f environment-dev.yml
#
# To update this environment
#
# conda env update -f environment-dev.yml --prune
#
# To remove this environment
#
# conda env remove --name herbie-dev
#
###############################################################################