forked from biolab/orange3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeta.yaml
104 lines (91 loc) · 2.28 KB
/
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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
ignore: {% set data = load_setup_py_data() %}
ignore: {% set version = data['version'] %}
package:
name: orange3
version: {{ data['version'] }}
source:
git_url: ../
build:
number: 0
entry_points:
- orange-canvas = Orange.canvas.__main__:main
osx_is_app: True
script:
- python setup.py build -j1 bdist_wheel
- if errorlevel 1 exit 1 # [win]
- pip install --no-deps --no-cache --no-index -f dist Orange3=={{ version }}
- if errorlevel 1 exit 1 # [win]
requirements:
build:
- python
- setuptools
# https://github.com/numpy/numpy/pull/6470
- numpy !=1.9.2 # [win]
- numpy >=1.9.0 # [not win]
- pip >=8
- wheel
run:
- python
- setuptools >=36.3
- numpy >=1.16.0
- scipy >=0.16.1
- scikit-learn >=0.22.0,!=0.23.0
- bottleneck >=1.0.0
- chardet >=3.0.2
- docutils
- xlrd >=0.9.2
- xlsxwriter
- anyqt >=0.0.8
- pyqt >=5.12
- pyqtgraph ~=0.10.0|~=0.11.0
- joblib >=0.9.4
- keyring
- keyrings.alt
- pip >=9.0
- python.app # [osx]
- serverfiles
- python-louvain >=0.13
- requests
- matplotlib-base >=2.0.0
- openTSNE >=0.4.3
- pandas
- pyyaml
- orange-canvas-core >=0.1.15,<0.2a
- orange-widget-base >=4.6.0
- openpyxl
- httpx >=0.12
- baycomp >=1.0.2
# cachecontrol (required by canvas core) <0.12.5 is incompatible with msgpack 1.0
- cachecontrol >=0.12.6
test:
# Python imports
imports:
- Orange
- Orange.canvas.config
- Orange.widgets
- Orange.widgets.data
- Orange.widgets.evaluate
- Orange.widgets.model
- Orange.widgets.unsupervised
- Orange.widgets.visualize
- Orange.classification
- Orange.clustering
- Orange.data
- Orange.distance
- Orange.evaluation
- Orange.modelling
- Orange.preprocess
- Orange.projection
- Orange.regression
- Orange.statistics
commands:
- python -m unittest -v Orange.tests
- orange-canvas --help
app:
entry: orange-canvas
summary: 'data visualization and data analysis tool'
icon: ../distribute/icon-48.png
about:
home: http://orange.biolab.si/
license: GNU General Public License v3 or later (GPLv3+)
summary: 'Orange, a component-based data mining framework.'