Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Conda information #41

Merged
merged 3 commits into from
Jul 13, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,19 @@ Siphon

.. image:: https://img.shields.io/pypi/v/siphon.svg
:target: https://pypi.python.org/pypi/siphon/
:alt: Latest Version
:alt: PyPI Package

.. image:: https://img.shields.io/pypi/dm/siphon.svg
:target: https://pypi.python.org/pypi/siphon/
:alt: Downloads
:alt: PyPI Downloads

.. image:: https://binstar.org/unidata/siphon/badges/version.svg
:target: https://binstar.org/unidata/siphon
:alt: Binstar Package

.. image:: https://binstar.org/unidata/siphon/badges/downloads.svg
:target: https://binstar.org/unidata/siphon
:alt: Binstar Downloads

.. image:: https://travis-ci.org/Unidata/siphon.svg?branch=master
:target: https://travis-ci.org/Unidata/siphon
Expand Down
15 changes: 15 additions & 0 deletions docs/source/developerguide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,21 @@ Requirements
- IPython >= 3.1
- pandoc (not a python package)

~~~~~
Conda
~~~~~

Settings up a development environment in Siphon is as easy as (from the
base of the repository):

.. parsed-literal::
conda env create
conda develop -n devel .

The ``environment.yml`` contains all of the configuration needed to easily
set up the environment, called ``devel``. The second line sets up conda to
run directly out of the git repository.

--------------
Making Changes
--------------
Expand Down
19 changes: 19 additions & 0 deletions environment.yml
Original file line number Diff line number Diff line change
@@ -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