forked from spacetelescope/STScI-STIPS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenvironment.yml
78 lines (68 loc) · 1.74 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
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
# 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:
# $ conda activate stips
#
# To deactivate the environment run the following command:
# $ conda deactivate
#
# To remove the environment entirely, run the following command:
# $ conda env remove -n stips
name: stips
channels:
- conda-forge
- astropy
- defaults
dependencies:
# Base dependencies
- pip
- python>=3.8
- jupyter
- Cython
- esutil # installed from conda because you need the pre-compiled binaries.
- pip:
#
# Special Modules. These are temporary entries and require documentation.
#
# poppy 1.0.3 fixes a bug with the way poppy was calling factorial with non-integer
# values. Currently this is the only way to ensure that webbpsf picks up the correct
# poppy version. This peg should be removed as soon as webbpsf has updated to only
# use poppy versions that include this fix.
- poppy==1.0.3
# Core Modules
- webbpsf==1.0.0
- pandeia.engine==1.7
- synphot==1.1.1
- stsynphot==1.1.0
# Major modules
- astropy
- photutils
- ConfigParser
- numpy
- scipy
- matplotlib
- ipython
# Minor modules
- montage-wrapper
- pyyaml
- mechanize
# Docs
- docutils
- sphinx
- sphinx_rtd_theme
- stsci_rtd_theme
- sphinx_automodapi
- sphinx_autoapi
- astropy_helpers
# Testing
- tox
- tox-conda
- pytest-astropy
# Current package
- .