forked from blaylockbk/Herbie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment-dev.yml
118 lines (108 loc) · 3.01 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
## Used by Brian for developing Herbie
name: herbie-dev
channels:
- conda-forge
dependencies:
- python>=3.11
- 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.22
- cfgrib>=0.9.10.4
- eccodes>=2.31
- geopandas
- h5py
- jupyter
- jupyterlab
- matplotlib>=3.4.3
- metpy
- netcdf4
- numpy>=1.25
- pandas>=2.0
- pygrib>=2.1.4
- pylint
- pyproj>=3.6
- requests>=2.31
- s3fs
- scipy
- toml
- xarray>=2023.7
- zarr
# ===================
# Formatter & Testing
# ===================
- ruff
- 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:
#- cartopy>=0.22
# 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
# =============================================================================
# Extra Setup Steps
# =============================================================================
# conda activate herbie-dev
# cd Herbie
# pip install -e .
#
# git clone https://github.com/blaylockbk/Carpenter_Workshop.git
# cd Carpenter_Workshop
# pi install -e .
# =============================================================================
# Notes
# =============================================================================
# Being more specific with versions *may* help speed up conda
# creating/updating environments
# https://www.anaconda.com/blog/understanding-and-improving-condas-performance
#
# =============================================================================
# Conda Tips
# =============================================================================
# To create this environment
#
# curl -O https://raw.githubusercontent.com/blaylockbk/Herbie/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
#
# To do a conda clean
#
# conda clean -tp
# =============================================================================