-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add build.sh, bld.bat, meta.yaml for scoop 0.7
- Loading branch information
1 parent
973c528
commit 84a4521
Showing
3 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |