Skip to content

Commit

Permalink
Merge pull request #44 from mortonjt/pip
Browse files Browse the repository at this point in the history
adding pip install
  • Loading branch information
wasade authored Aug 30, 2016
2 parents e29697e + 6870b42 commit 334096d
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
11 changes: 11 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
include .coveragerc
include CHANGELOG.md
include COPYING.txt
include Makefile
include README.md

graft gneiss

global-exclude *.pyc
global-exclude *.pyo
global-exclude .git
15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,27 @@ gneiss is currently in alpha. We are actively developing it, and __backward-inc

# Installation

To install this package, it is recommended to use conda as follows
To install this package, it is recommended to use conda. An environment can installed as follows

```
conda create -n gneiss_env python=3
```

gneiss then can be installed as follows
```
source activate gneiss_env
conda install pyqt
pip install gneiss
```

gneiss can also be installed through conda
```
conda install -c biocore gneiss
```

To run through the tutorials, you'll need a few more packages, namely `seaborn`, `biom-format` and `h5py`.
These packages can be installed with conda as follows
```
source activate gneiss
conda install seaborn h5py
pip install biom-format
```
Expand Down
2 changes: 1 addition & 1 deletion gneiss/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@

__all__ = ['ols', 'mixedlm']

__version__ = "0.1.0"
__version__ = "0.1.2"

0 comments on commit 334096d

Please sign in to comment.