blob: 197380949ebcbc69eaf0f20a3f241aca264c3c86 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
{% set name = 'qtpy' %}
{% set version = '1.1.1' %}
{% set number = '0' %}
package:
name: {{name}}
version: {{version}}
source:
fn: {{name}}-{{version}}.tar.gz
url: https://pypi.io/packages/source/q/{{name}}/QtPy-{{version}}.tar.gz
md5: 181a1cc9c010e0c1f4daa3f0f69e3782
build:
number: {{number}}
script: python setup.py install --single-version-externally-managed --record record.txt
requirements:
build:
- python
- setuptools
run:
- python
test:
requires:
- pyqt
imports:
- qtpy
about:
home: https://github.com/spyder-ide/qtpy
license: MIT
summary: A uniform layer to support PyQt5, PyQt4 and PySide with a single codebase
|