-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmeta.yaml
51 lines (42 loc) · 981 Bytes
/
meta.yaml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{% set name = "fs_filepicker" %}
{% set version = load_setup_py_data().version %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://github.com/ReimarBauer/fs_filepicker/archive/{{ version }}.tar.gz
sha256:
build:
noarch: python
number: 0
entry_points:
- fs_filepicker = fslib.fs_filepicker:main
script: python setup.py install --single-version-externally-managed --record record.txt
requirements:
build:
- python
- setuptools
- future
run:
- python
- pyqt 5.*
- humanfriendly
- fs
- fs.webdavfs
- fs.sshfs
- future
test:
imports:
- fslib.fs_filepicker
commands:
- fs_filepicker -h
about:
home: https://github.com/ReimarBauer/fs_filepicker
license: APACHE 2.0
license_file: LICENSE
summary: 'QT Filepicker for PyFilesystem2'
dev_url: https://github.com/ReimarBauer/fs_filepicker
extra:
recipe-maintainers:
- ReimarBauer