Mercurial > hg > tvii
changeset 26:d945a862617c
note dependencies; need wheels
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Mon, 04 Sep 2017 11:33:51 -0700 |
parents | c52d8173b056 |
children | 22218d90d33f |
files | README.txt setup.py |
diffstat | 2 files changed, 21 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/README.txt Mon Sep 04 10:16:01 2017 -0700 +++ b/README.txt Mon Sep 04 11:33:51 2017 -0700 @@ -1,7 +1,21 @@ tvii ==== -TV2 +TV2 : more experiments in machine learning + + +Dependencies +------------ + +`tvii` is built upon the shoulders of giants + +- numpy: http://www.numpy.org/ +- h5py: http://www.h5py.org/ +- matplotlib: http://matplotlib.org/ +- scipy: https://www.scipy.org/install.html + +For `h5py` you may need your `python-dev` package +and or `libhdf5-dev`. For `scipy` you need Lapack. Links -----
--- a/setup.py Mon Sep 04 10:16:01 2017 -0700 +++ b/setup.py Mon Sep 04 11:33:51 2017 -0700 @@ -5,8 +5,12 @@ import os version = "0.0" -dependencies = ['numerics', - 'numpy'] +dependencies = ['h5py', + 'matplotlib', + 'numerics', + 'numpy', + 'Pillow', + 'scipy'] # allow use of setuptools/distribute or distutils kw = {}