Skip to content

Commit

Permalink
Attemp to add conda package.
Browse files Browse the repository at this point in the history
  • Loading branch information
Eddie Hebert authored and ehebert committed Jan 4, 2017
1 parent 8243fd7 commit 080e4e6
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 0 deletions.
8 changes: 8 additions & 0 deletions conda/pytables/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://docs.continuum.io/conda/build.html
:: for a list of environment variables that are set during the build process.
9 changes: 9 additions & 0 deletions conda/pytables/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash

$PYTHON setup.py install

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

# See
# https://docs.continuum.io/conda/build.html
# for a list of environment variables that are set during the build process.
26 changes: 26 additions & 0 deletions conda/pytables/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package:
name: pytables
version: "3.3.0"

source:
fn: tables-3.3.0.tar.gz
url: https://pypi.python.org/packages/97/eb/ea2102f5a210a62f9f7387cf9912cb841f4a9089dbb232e642daa2626769/tables-3.3.0.tar.gz
md5: f75aa46cf6e7c5ee51f1ab498d5895f8

requirements:
build:
- python
- numpy x.x
- numexpr x.x
- six

run:
- python
- numpy x.x
- numexpr x.x
- six

test:
# Python imports
imports:
- tables

0 comments on commit 080e4e6

Please sign in to comment.