forked from erdc/quest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconda_environment.yml
68 lines (60 loc) · 1.2 KB
/
conda_environment.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# conda environment file for python 3, includes packages needed for testing
# create a conda virtual env using:
# conda env create -n myenv --file py3_conda_environment.yml
# source activate myenv (use 'activate myenv' on windows)
# python setup.py develop
#
# optionally run tests:
# python setup.py test
name: quest
channels:
- pyviz/label/dev
- conda-forge
dependencies:
- python=3
# core dependencies
- click
- distributed>=1.18
- fiona
- gdal
- geojson
- libgdal # to ensure it comes from conda-forge
- peewee
- pandas<=0.22.0
- geopandas
- jinja2
- matplotlib
- numpy
- param
- pint
- pony
- psutil
- pyyaml
- rasterio
- sortedcollections
- tornado
- ulmo>=0.8.3.2
- werkzeug
# test dependencies
- pytest=3.7.4
- pytest-runner
- pytest-cov
- coveralls
- nbval
# docs dependencies
- sphinx
- sphinx_rtd_theme
# plugin dependencies
- girder-client
- hs_restclient
- pillow
- requests
- whitebox_tools
# notebook examples dependencies
- jupyter
- holoviews
- geoviews
- hvplot
- paramnb
- parambokeh
- cartopy