Skip to content

Commit

Permalink
add build.sh, bld.bat, meta.yaml for scoop 0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
nickvandewiele committed Jan 31, 2016
1 parent 973c528 commit 84a4521
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 0 deletions.
8 changes: 8 additions & 0 deletions scoop/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
:: 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 scoop/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.
36 changes: 36 additions & 0 deletions scoop/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
package:
name: scoop
version: "0.7"

source:
git_url: https://github.com/soravux/scoop.git

requirements:
build:
- greenlet
- pyzmq
- python
- setuptools

run:
- greenlet
- pyzmq
- python

test:
imports:
- scoop

commands:
- cd $SRC_DIR/test ; python -m scoop tests_parser.py
- cd $SRC_DIR/test ; python -m scoop tests_stat.py
- cd $SRC_DIR/test ; python -m scoop tests_stopwatch.py

about:
home: https://github.com/soravux/scoop.git
license: GNU LESSER GENERAL PUBLIC LICENSE
summary: 'Scalable COncurrent Operations in Python'

# See
# http://docs.continuum.io/conda/build.html for
# more information about meta.yaml

0 comments on commit 84a4521

Please sign in to comment.