From 04178bcb10e210cdac658cef4d024f30504b9384 Mon Sep 17 00:00:00 2001 From: Ryan May Date: Mon, 6 Jul 2015 11:39:21 -0500 Subject: [PATCH] Add conda environment config. (Fixes #40) --- environment.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 environment.yml diff --git a/environment.yml b/environment.yml new file mode 100755 index 000000000..192c491c6 --- /dev/null +++ b/environment.yml @@ -0,0 +1,19 @@ +# Create full conda environment for development, including some useful tools +name: devel +channels: + - https://conda.binstar.org/Unidata +dependencies: + - python=3 + - numpy + - scipy + - matplotlib + - pint + - requests + - protobuf + - netcdf4 + - ipython-notebook + - sphinx + - nose + - vcrpy + - flake8 + - pep8-naming