diff --git a/conda/README.rst b/conda/README.rst new file mode 100644 index 0000000..b239848 --- /dev/null +++ b/conda/README.rst @@ -0,0 +1,19 @@ +This directory contains conda recipes for the GaitAnalysisToolKit. There is one +recipe for each version of the software. Note that an octave conda package does +not yet exist so the oct2py install relies on octave being in your path via +another means. You will need to either build an oct2py conda package or make +sure you have a binstar channel with one available because oct2py doesn't exist +in anaconda's main channel. + +For example, you can build a package on 64 bit Linux like so:: + + $ conda build gaitanalysistoolkit-0.1.2 + +and upload it to binstart (adjust the path to reflect you anaconda/miniconda +installation):: + + $ binstar upload ~/anaconda/conda-bld/linux-64/gaitanalysistoolkit-0.1.2-0.tar.bz2 + +and install with:: + + $ conda install -c gaitanalysistoolkit diff --git a/conda/gaitanalysistoolkit-0.1.2/bld.bat b/conda/gaitanalysistoolkit-0.1.2/bld.bat new file mode 100644 index 0000000..c40a9bb --- /dev/null +++ b/conda/gaitanalysistoolkit-0.1.2/bld.bat @@ -0,0 +1,2 @@ +"%PYTHON%" setup.py install +if errorlevel 1 exit 1 diff --git a/conda/gaitanalysistoolkit-0.1.2/build.sh b/conda/gaitanalysistoolkit-0.1.2/build.sh new file mode 100644 index 0000000..8e25a14 --- /dev/null +++ b/conda/gaitanalysistoolkit-0.1.2/build.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +$PYTHON setup.py install diff --git a/conda/gaitanalysistoolkit-0.1.2/meta.yaml b/conda/gaitanalysistoolkit-0.1.2/meta.yaml new file mode 100644 index 0000000..e041cae --- /dev/null +++ b/conda/gaitanalysistoolkit-0.1.2/meta.yaml @@ -0,0 +1,44 @@ +package: + name: gaitanalysistoolkit + version: "0.1.2" + +source: + fn: GaitAnalysisToolKit-0.1.2.tar.gz + url: https://pypi.python.org/packages/source/G/GaitAnalysisToolKit/GaitAnalysisToolKit-0.1.2.tar.gz + md5: 16a30b1d2ba9a3ed0a425c95ada6ad15 + +requirements: + build: + + - python >=2.7,<3 + - setuptools + - numpy >=1.6.1 + - scipy >=0.9.0 + - matplotlib >=1.1.0 + - pytables >=2.3.1 + - pandas >=0.12.0 + - pyyaml >=3.10 + - dynamicisttoolkit >=0.3.5 + - oct2py >=1.2.0 + + run: + - python >=2.7,<3 + - numpy >=1.6.1 + - scipy >=0.9.0 + - matplotlib >=1.1.0 + - pytables >=2.3.1 + - pandas >=0.12.0 + - pyyaml >=3.10 + - dynamicisttoolkit >=0.3.5 + - oct2py >=1.2.0 + +test: + # Python imports + imports: + - gaitanalysis + - gaitanalysis.tests + +about: + home: http://github.com/csu-hmc/GaitAnalysisToolKit + license: LICENSE.txt + summary: 'Various tools for gait analysis used at the Cleveland State\nUniversity Human Motion and Control Lab.'