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

Added a conda recipe for version 0.1.2. #127

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
19 changes: 19 additions & 0 deletions conda/README.rst
Original file line number Diff line number Diff line change
@@ -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 <your-binstar-username> gaitanalysistoolkit
2 changes: 2 additions & 0 deletions conda/gaitanalysistoolkit-0.1.2/bld.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
"%PYTHON%" setup.py install
if errorlevel 1 exit 1
3 changes: 3 additions & 0 deletions conda/gaitanalysistoolkit-0.1.2/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash

$PYTHON setup.py install
44 changes: 44 additions & 0 deletions conda/gaitanalysistoolkit-0.1.2/meta.yaml
Original file line number Diff line number Diff line change
@@ -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.'