-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathanaconda-project.yml
48 lines (45 loc) · 1020 Bytes
/
anaconda-project.yml
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
name: Birds
description: Explore bird migration paths
platforms:
- linux-64
- osx-64
- win-64
env_specs:
anaconda50_py36:
channels:
- https://conda.anaconda.org/pyviz
- https://conda.anaconda.org/intake
- https://conda.anaconda.org/anaconda
- defaults
packages:
- notebook
- jupyter
- ipywidgets=7.4.2
- bokeh=1.1.0rc1
- python=3.6
- pandas=0.23.4
- param=1.9.0
- panel=0.5.0
- holoviews=1.12.0
- geoviews=1.6.2
- hvplot=0.4.0
- xarray
- intake
commands:
notebook_app:
description: Bird Migration app
env_spec: anaconda50_py36
unix: panel serve 04_panel.ipynb
supports_http_options: true
app:
description: Bird Migration app (via .py)
env_spec: anaconda50_py36
unix: panel serve app.py
supports_http_options: true
app_no_temp:
description: Bird Migration app (via .py)
env_spec: anaconda50_py36
unix: panel serve app_no_temp.py
supports_http_options: true
variables:
MPLBACKEND: Agg