-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmeta.yaml
More file actions
76 lines (66 loc) · 1.5 KB
/
Copy pathmeta.yaml
File metadata and controls
76 lines (66 loc) · 1.5 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{% set data = load_setup_py_data() %}
{% set name = "psyplot-gui" %}
package:
name: {{ name|lower }}
version: {{ data.get('version') }}
source:
git_url: ../..
build:
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }}
string: py{{ environ.get('CONDA_PY') }}{% if environ.get("BUILD_STR_END") %}_{{ environ.get("BUILD_STR_END") }}{% endif %}
skip: true # [py == 27]
requirements:
host:
- python
- pip
run:
- python
- psyplot >=1.3.0
- pyqt >=5
- pyqtwebengine
- qtconsole
- fasteners
- sphinx
- sphinx_rtd_theme
test:
imports:
- psyplot_gui
- psyplot_gui.main
- psyplot_gui.compat
- psyplot_gui.compat.qtcompat
- psyplot_gui.config
- psyplot_gui.sphinx_supp
requires:
- pytest
- pytest-cov
- codecov
- dask
- netcdf4
- seaborn
- psy-simple
- pip
source_files:
- tests
commands:
- pip install tests/test_plugin/
- psyplot --help
- pytest -sv --cov=psyplot_gui
- codecov
app:
entry: psyplot
icon: logo.png
summary: Psyplot visualization software
type: desk
about:
home: https://github.com/psyplot/psyplot-gui
license: LGPL-3.0-only
license_family: GPL
license_file:
- COPYING
- COPYING.LESSER
summary: Graphical user interface for the psyplot package
description: |
This package provides a graphical user interface to interact with the
psyplot framework.
doc_url: http://psyplot.github.io/psyplot-gui
dev_url: https://github.com/psyplot/psyplot-gui