-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenvironment.yml
More file actions
47 lines (44 loc) · 1.07 KB
/
environment.yml
File metadata and controls
47 lines (44 loc) · 1.07 KB
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
name: neonutilities
channels:
- conda-forge
dependencies:
- python>=3.9
- pip
- git
# -----
# Tools
# -----
- shapely
- geopandas
- h5py
- numpy
- pandas
# -------------------
# Formatter & Testing
# -------------------
- pytest
# - pip:
# Borrow some tools from my github
# - git+https://github.com/arojs314/utils.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/arojas314/neonutilities/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
#
###############################################################################