-
Notifications
You must be signed in to change notification settings - Fork 98
/
meta.yaml
59 lines (52 loc) · 1.19 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
{% set name = "grakel-dev" %}
{% set version = "0.1a5" %}
package:
name: '{{ name|lower }}'
version: '{{ version }}'
source:
path: ../GraKeL
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
host:
- python
- setuptools
- pytest
- numpy >=1.14.0
- scikit-learn >=0.19.0
- scipy >=1.0.1
- cython >=0.27.3
- future >=0.16.0
- six >=1.11.0
- cvxopt >=1.2.0
run:
- python
- pytest
- numpy >=1.14.0
- scikit-learn >=0.19.0
- scipy >=1.0.1
- cython >=0.27.3
- future >=0.16.0
- six >=1.11.0
- cvxopt >=1.2.0
build:
- {{ compiler('cxx') }}
test:
imports:
- grakel
- grakel.datasets
- grakel.kernels
- grakel.kernels._c_functions
- grakel.kernels._isomorphism
- grakel.tests
about:
home: https://github.com/ysig/GraKeL
license: BSD-3-Clause
license_family: BSD
license_file: ''
summary: A scikit-learn compatible library for graph kernels.
description: "For more info, please visit the documenantion or the github-page."
doc_url: 'https://ysig.github.io/GraKeL/dev/'
extra:
recipe-maintainers: 'Ioannis Siglidis'