-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathmicro_environment.yml
More file actions
40 lines (32 loc) · 947 Bytes
/
micro_environment.yml
File metadata and controls
40 lines (32 loc) · 947 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
39
40
# micro_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>=4.2,<6
- channels
- daphne
- setuptools_scm
- pip
- requests>=2.32.4,<3 # required by lots of things
- tornado>=6.5,<7
- cryptography>=46.0.5
- bcrypt # also required by channels, docker, daphne, condorpy
# Gen CLI commands
- pyyaml
- jinja2
# django plugin dependencies
- django-bootstrap5
- django-model-utils
- django-guardian