-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added recipe prototype for pymisc-utils (#10139)
* Added recipe prototype for pymisc-utils * Updated build dependencies * Updated repo url * Fixed copying of executables * Added dependency * Minor fix * Skip python 2
- Loading branch information
Showing
2 changed files
with
78 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,4 @@ | ||
#!/bin/bash | ||
$PYTHON setup.py install | ||
cp misc/*.py ${PREFIX}/bin/ | ||
chmod 755 ${PREFIX}/bin/*.py |
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,74 @@ | ||
{% set name = "pymisc-utils" %} | ||
{% set version = "0.2.10" %} | ||
{% set sha256 = "5fdce376485d43e064f3bf3bbb847a3688fca9d6ddca49cf2d30a163e2c4e71f" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://github.com/bmmalone/{{ name|lower }}/archive/{{ version }}.tar.gz | ||
sha256: {{ sha256 }} | ||
|
||
build: | ||
number: 0 | ||
skip: True [osx or py27] | ||
|
||
requirements: | ||
build: | ||
- {{ compiler('c') }} | ||
host: | ||
- python | ||
- numpy | ||
- scipy | ||
- cython | ||
- statsmodels | ||
- matplotlib | ||
- pandas | ||
- scikit-learn | ||
- fastparquet | ||
- networkx | ||
- docopt | ||
- tqdm | ||
- joblib | ||
- xlrd | ||
- openpyxl | ||
- graphviz | ||
- pydot | ||
- paramiko | ||
- six | ||
- nltk | ||
- dask | ||
- setuptools | ||
run: | ||
- python | ||
- numpy | ||
- scipy | ||
- cython | ||
- statsmodels | ||
- matplotlib | ||
- pandas | ||
- scikit-learn | ||
- fastparquet | ||
- networkx | ||
- docopt | ||
- tqdm | ||
- joblib | ||
- xlrd | ||
- openpyxl | ||
- graphviz | ||
- pydot | ||
- paramiko | ||
- six | ||
- nltk | ||
- dask | ||
|
||
test: | ||
commands: | ||
- call_program.py -h | ||
|
||
about: | ||
home: https://github.com/dieterich-lab/pymisc-utils | ||
license: MIT | ||
license_file: LICENSE | ||
summary: Utility library for rp-bp |