forked from radis/radis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenvironment.yml
More file actions
57 lines (56 loc) 路 1.82 KB
/
Copy pathenvironment.yml
File metadata and controls
57 lines (56 loc) 路 1.82 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
48
49
50
51
52
53
54
55
56
# Create a new environment from this file with :
# conda create -n radis-env python=3.12 -y
#
# Or update an existing environment OTHER-ENV from this file with :
# conda activate OTHER-ENV
# conda env update --file environment.yml
#
# Dependencies in environment.yml and pyproject.toml should be kept consistent.
# This is tested automatically https://github.com/radis/radis/pull/734
name: radis-env
channels:
- conda-forge
- nodefaults # no defaults packages (only conda-forge)
dependencies:
- python
- astropy>=4.3.1 # Unit aware calculations
- astroquery>=0.4.6 # to fetch HITRAN databases
- beautifulsoup4>=4.10.0 # parse ExoMol website
- configparser
#- cython # Not needed, see #647
- habanero>=1.2.0 # CrossRef API to retrieve data from doi
- h5py>=3.2.1 # load HDF5
- joblib # for parallel loading of SpecDatabase
- lmfit # for new fitting modules
- matplotlib
- numpy
- numba # just-in-time compiler
- pandas
- plotly>=2.5.1 # for line survey HTML output
- psutil # to get user RAM
- pytables # for pandas to HDF5 export
- scipy>=1.4.0
- seaborn # other matplotlib themes
- termcolor # terminal colors
- specutils<2 #Incompatibility with specutils 2.0.0, readthedocs not passing the tests, notably plot_specutils_processing.py, see #834
- pip
- pip:
- cryptography
- getpass4
- hitran-api # HAPI, used to access TIPS partition functions
- hjson # Json with comments (for default_radis.json)
- json-tricks>=3.15.0 # to deal with non jsonable formats
- lxml # parser used for ExoMol website
- mpldatacursor
- periodictable
- peakutils
- publib # Plotting styles for Matplotlib.
- python-dotenv
- requests
- ruamel.yaml
- toml
- tqdm
- vaex-core ; python_version < '3.11'
- vaex-hdf5 ; python_version < '3.11'
- vaex-viz ; python_version < '3.11'
- vulkan