aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCalvin <calvin@EESI>2013-03-26 14:19:08 -0400
committerCalvin <calvin@EESI>2013-03-26 14:19:08 -0400
commitbda303b5d9ae55d66746369904c9ab3ab1cddb5f (patch)
treeb46a0eec2908467abb0b48a0b0799810798c6c6a
parent82f5061a0ee200e6e27836e3607d1fe0db06c9da (diff)
deleted mex64 binary files and update readme to include installation instructions
-rw-r--r--README.txt25
-rw-r--r--setup.py1
2 files changed, 25 insertions, 1 deletions
diff --git a/README.txt b/README.txt
index b824e83..be68c37 100644
--- a/README.txt
+++ b/README.txt
@@ -11,9 +11,32 @@ toolbox, originally written in C with a Mex interface to Matlab. Python
face to all the functionality of the FEAST implementation that was provided
with the original Matlab interface.
+Installation
+====
+To install the FEAST interface, you'll need to build and install the libraries
+first, and then install python.
+
+Make MIToolbox and install it:
+
+$ cd FEAST/MIToolbox
+$ make
+$ sudo make install
+
+Make FSToolbox and install it:
+
+$ cd FEAST/FSToolbox
+$ make
+$ sudo make install
+
+Install our PyFeast module
+
+$ python ./setup.py build
+$ sudo python ./setup.py install
+
+
Demonstration
====
-See demo_feast_wrapper.py for an example with uniform data and an image
+See test/test.py for an example with uniform data and an image
data set. The image data set was collected from the digits example in
the Scikits-Learn toolbox.
diff --git a/setup.py b/setup.py
index 14622e5..7be8577 100644
--- a/setup.py
+++ b/setup.py
@@ -1,4 +1,5 @@
from distutils.core import setup
+
setup(name='feast',
version='1.0',
py_modules=['feast'],