37 lines
784 B
YAML
37 lines
784 B
YAML
# Diagnostics environment description
|
|
|
|
# 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: diagnostics
|
|
dependencies:
|
|
- python
|
|
# defaults
|
|
- ipython
|
|
- numpy
|
|
- scipy
|
|
- matplotlib
|
|
# for execution and kernel discovery within jupyter
|
|
- ipykernel
|
|
- ipywidgets
|
|
- conda-forge::voila
|
|
# DAQ
|
|
- paulscherrerinstitute::bsread
|
|
- paulscherrerinstitute::cam_server_client
|
|
- paulscherrerinstitute::data_api
|
|
- paulscherrerinstitute::elog
|
|
- paulscherrerinstitute::pyepics >=3.4.2
|
|
# data
|
|
- paulscherrerinstitute::jungfrau_utils >=3
|
|
- paulscherrerinstitute::sfdata
|
|
# Channel access
|
|
- cachannel
|
|
# terminal
|
|
- colorama
|
|
- tqdm
|
|
|
|
|