Skip to content

Commit

Permalink
Merge pull request #14 from dask/conda-recipe
Browse files Browse the repository at this point in the history
Add conda recipe
  • Loading branch information
koverholt committed Mar 23, 2016
2 parents 6382be9 + 6d383c8 commit 3a80047
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 0 deletions.
8 changes: 8 additions & 0 deletions conda.recipe/build.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
:: http://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.recipe/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
# http://docs.continuum.io/conda/build.html
# for a list of environment variables that are set during the build process.
24 changes: 24 additions & 0 deletions conda.recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
package:
name: s3fs
version: "0.0.1"

source:
path: ../

requirements:
build:
- python
- boto3

run:
- python
- boto3

test:
imports:
- s3fs

about:
home: http://s3fs.readthedocs.org/en/latest/
license: BSD
summary: 'Convenient Filesystem interface over S3'

0 comments on commit 3a80047

Please sign in to comment.