forked from stellargraph/stellargraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeta.yaml
66 lines (62 loc) · 1.54 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
---
package:
name: "stellargraph"
version: "1.2.1"
source:
path: .
build:
noarch: python
number: 0
script: "{{ PYTHON }} -m pip install . -vv"
skip: true # [py<36]
requirements:
host:
# requirements to build stellargraph
- python
run:
# requirements to run stellargraph
- gensim >=3.4.0
- matplotlib >=2.2
- networkx >=2.2
- numpy >=1.14
- pandas >=0.24
- python >=3.6
- scikit-learn >=0.20
- scipy >=1.1.0
- tensorflow >=2.1.0
- ipython
- ipykernel
test:
imports:
# this section tests imports of stellargraph and will need updating as our api evolves
- stellargraph
- stellargraph.connector
- stellargraph.connector.neo4j
- stellargraph.core
- stellargraph.data
- stellargraph.datasets
- stellargraph.interpretability
- stellargraph.interpretability.saliency_maps
- stellargraph.layer
- stellargraph.mapper
- stellargraph.utils
requires:
- pytest
- pytest-benchmark >= 3.1
source_files:
# we only bundle and run a subset of tests as a 'smoke test'
- tests/__init__.py
- tests/test_utils
- tests/core
- tests/layer
- pytest.ini
commands:
- py.test -ra -p no:cacheprovider --benchmark-disable --color=yes tests/
about:
home: "https://github.com/stellargraph/stellargraph"
license: Apache Software
license_family: APACHE
license_file: LICENSE
summary: "Python library for machine learning on graphs"
doc_url: https://stellargraph.readthedocs.io/
dev_url: https://github.com/stellargraph/stellargraph