-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathenvironment.yml
53 lines (47 loc) · 1.03 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
# This file describes a conda environment that can be to install STIPS
#
# Run the following command to set up this environment:
# $ conda env create -f environment.yml
#
# The environment name can be overridden with the following command:
# $ conda env create -n <custom name> -f environment.yml
#
# Run the following command to activate the environment:
# $ source activate lcbg
#
# To deactivate the environment run the following command:
# $ source deactivate
#
# To remove the environment entirely, run the following command:
# $ conda env remove -n lcbg
#
# To update an environment
# $ conda env update -f environment.yml
name: lcbg
channels:
- conda-forge
- astropy
- http://ssb.stsci.edu/astroconda
- defaults
dependencies:
# Base dependencies
- pip
- python>=3.7
- Cython
- numpy>=1.13
- scipy
- matplotlib>=3.1.1
- astropy
- jupyter
- notebook
# Dependencies
- photutils
- ipywidgets
# Docs
- sphinx
- docutils
- pip:
# Docs
- astropy_helpers
- extension_helpers
- sphinx_astropy