forked from blaylockbk/goes2go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment-dev.yml
97 lines (86 loc) · 2.34 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
name: goes2go-dev
channels:
- conda-forge
dependencies:
- python>=3.10
- pip
- git
- rclone >= 1.58.0 # Not required by goes2go, but is an awesome alternative https://rclone.org/
# -----
# Tools
# -----
- cartopy
- geopandas
- h5netcdf
- jupyter
- jupyterlab
- matplotlib
- metpy
- netcdf4
- numpy
- pandas
- s3fs
- toml
- xarray
# -------------------
# Formatter & Testing
# -------------------
- black
- isort
- pytest
# -------------
# Documentation
# -------------
- sphinx>=4.5
- nbsphinx
- nbconvert>=6.5
- pydata-sphinx-theme # PyData Sphinx Theme (i.e, Numpy, Pandas, MetPy)
- sphinx-design
- recommonmark
- sphinx-markdown-tables
- autodocsumm
- sphinx-autosummary-accessors # pandas and xarray accessor docs
- latexmk
- myst-parser
- linkify-it-py
#- pip:
# clone goes2go and install with edit options
# >>> git clone https://github.com/blaylockbk/goes2go.git
# >>> cd goes2go
# >>> pip install -e .
# clone Carpenter_Workshop and install with edit options
# >>> git clone https://github.com/blaylockbk/Carpenter_Workshop.git
# >>> cd Carpenter_Workshop
# >>> pip install -e .
# ===============================================
# Then you can set the branches etc. for code development.
# Install from PyPi
#- goes2go
# Install most recent version on GitHub
#- git+https://github.com/blaylockbk/goes2go.git
# Install a specific branch
#- git+https://github.com/blaylockbk/goes2go.git@blaylockbk/issue33-update-to-setup.cfg
# 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
#
###############################################################################