Skip to content
This repository has been archived by the owner on Sep 29, 2022. It is now read-only.

Commit

Permalink
add recipe for toolshed python module
Browse files Browse the repository at this point in the history
  • Loading branch information
brentp committed Jun 28, 2013
1 parent 98b7b9b commit f324077
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 0 deletions.
8 changes: 8 additions & 0 deletions toolshed/bld.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
python setup.py install
if errorlevel 1 exit 1

:: Add more build steps here, if they are necessary.

:: See
:: https://github.com/ContinuumIO/conda/blob/master/conda/builder/README.txt
:: for a list of environment variables that are set during the build process.
9 changes: 9 additions & 0 deletions toolshed/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash

$PYTHON setup.py install || exit 1

# Add more build steps here, if they are necessary.

# See
# https://github.com/ContinuumIO/conda/blob/master/conda/builder/README.txt
# for a list of environment variables that are set during the build process.
27 changes: 27 additions & 0 deletions toolshed/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
package:
name: toolshed
version: 0.2.9

source:
fn: toolshed-0.2.9.tar.gz
url: https://pypi.python.org/packages/source/t/toolshed/toolshed-0.2.9.tar.gz
md5: a665488a48805f3455037d9c00c07e5b

requirements:
build:
- python
- distribute
- nose

run:
- python

test:
requires:
- nose
imports:
- toolshed

about:
home: https://github.com/brentp/toolshed
license: MIT License

0 comments on commit f324077

Please sign in to comment.