Skip to content

Commit

Permalink
Added recipe prototype for pymisc-utils (#10139)
Browse files Browse the repository at this point in the history
* 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
eggzilla authored Jul 30, 2018
1 parent 7e3ff8a commit e7ce610
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 0 deletions.
4 changes: 4 additions & 0 deletions recipes/pymisc-utils/build.sh
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
74 changes: 74 additions & 0 deletions recipes/pymisc-utils/meta.yaml
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

0 comments on commit e7ce610

Please sign in to comment.