forked from spacetelescope/STScI-STIPS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment.yml
76 lines (66 loc) · 1.64 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
# This file describes a conda environment that can be used 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.10
- 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
# Core Modules
- webbpsf>=1.1.1
- pandeia.engine==3.1
- synphot>=1.1.1
- stsynphot>=1.1.0
- soc_roman_tools
# Major modules
- astropy
- photutils
- ConfigParser
- numpy
- scipy
- matplotlib
- ipython
# Minor modules
- montage-wrapper
- pyyaml
- mechanize
# Docs
- docutils
- sphinx
- sphinx_rtd_theme
# - stsci_rtd_theme
# (install stsci_rtd_theme from master until a post 1.0 release occurs
# to prevent issues with bullets in the documentation)
- git+https://github.com/spacetelescope/stsci_rtd_theme.git@master
- sphinx_automodapi
- sphinx_autoapi
- sphinx_astropy
# Testing
- tox
- tox-conda
- pytest-astropy
# Current package
- .