37 lines
818 B
YAML
37 lines
818 B
YAML
# use via:
|
|
# conda env create --name $NEW_ENV_NAME --file $THIS_FILE_NAME
|
|
# e.g.
|
|
# conda env create --name slic --file conda-env.yml
|
|
# NOTE: $NEW_ENV_NAME is optional and defaults to slic
|
|
|
|
name: slic
|
|
dependencies:
|
|
- python =3.8
|
|
# defaults
|
|
- ipython
|
|
- numpy
|
|
- scipy
|
|
- matplotlib
|
|
# DAQ
|
|
- paulscherrerinstitute::bsread
|
|
- paulscherrerinstitute::cam_server_client
|
|
- paulscherrerinstitute::cta_lib
|
|
- paulscherrerinstitute::data_api
|
|
# - paulscherrerinstitute::detector_integration_api #TODO: deprecated?
|
|
- paulscherrerinstitute::elog
|
|
- paulscherrerinstitute::pyepics >=3.4.2
|
|
# data
|
|
- paulscherrerinstitute::jungfrau_utils >=3
|
|
- paulscherrerinstitute::sfdata
|
|
# GUI
|
|
- wxpython
|
|
# terminal
|
|
- colorama
|
|
- tqdm
|
|
- rich
|
|
- conda-forge::fuzzywuzzy
|
|
- conda-forge::logzero
|
|
- conda-forge::yaspin
|
|
|
|
|