forked from tethysplatform/tethys
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmicro_environment.yml
More file actions
38 lines (30 loc) · 884 Bytes
/
Copy pathmicro_environment.yml
File metadata and controls
38 lines (30 loc) · 884 Bytes
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
# environment.yml
# Configuration file for creating a Conda Environment with dependencies needed for Tethys Platform.
# Create the environment by running the following command (after installing Mambaforge):
# $ mamba env create -f micro_environment.yml
# OR
# Create the environment with conda by running the following command (after installing Miniconda or similar):
# $ conda env create -f micro_environment.yml
name: tethys
channels:
- conda-forge
dependencies:
- python>=3.8
# system dependencies
- pyopenssl
- openssl
# core dependencies
- django>=3.2,<6
- channels
- daphne
- setuptools_scm
- pip
- requests # required by lots of things
- bcrypt # also required by channels, docker, daphne, condorpy
# Gen CLI commands
- pyyaml
- jinja2
# django plugin dependencies
- django-bootstrap5
- django-model-utils
- django-guardian