Skip to content
This repository has been archived by the owner on Dec 4, 2018. It is now read-only.

Commit

Permalink
imagehash (#208)
Browse files Browse the repository at this point in the history
* imagehash

* pywavelets

* skip windows for imagehash

* not windows

* Update meta.yaml
  • Loading branch information
marqh authored and lbdreyer committed Oct 26, 2016
1 parent baac49e commit cf5074a
Show file tree
Hide file tree
Showing 4 changed files with 66 additions and 0 deletions.
3 changes: 3 additions & 0 deletions imagehash/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash

$PYTHON setup.py install
28 changes: 28 additions & 0 deletions imagehash/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
package:
name: imagehash
version: "3.0"

source:
fn: ImageHash-3.0.tar.gz
url: https://pypi.python.org/packages/c8/d0/47d1ce7350ece1ff759c5d399392172435391da1ab1008a77c533f59e7e0/ImageHash-3.0.tar.gz
md5: e509d748cb6f0b27a056ef903de01b0e

build:
skip: True # [win]
number: 0

requirements:
build:
- python
- scipy
- pillow
- pywavelets
run:
- python
- scipy
- pillow
- pywavelets

test:
imports:
- imagehash
33 changes: 33 additions & 0 deletions pywavelets/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{% set version = "0.4.0" %}

package:
name: pywavelets
version: {{ version }}

source:
fn: PyWavelets-{{ version }}.tar.gz
url: https://pypi.python.org/packages/source/P/PyWavelets/PyWavelets-{{ version }}.tar.gz
md5: 5b41cd6bf4bd7645aee8eaae72816853

build:
skip: True # [win]
number: 0
script: python setup.py install

requirements:
build:
- python
- cython
- numpy x.x
run:
- python
- numpy x.x

test:
requires:
- nose

about:
home: https://github.com/PyWavelets/pywt
license: MIT
summary: Discrete Wavelet Transforms in Python
2 changes: 2 additions & 0 deletions pywavelets/run_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import pywt
pywt.test()

0 comments on commit cf5074a

Please sign in to comment.