-
Notifications
You must be signed in to change notification settings - Fork 10
/
meta.yaml
53 lines (45 loc) · 1.21 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
{% set data = load_setup_py_data() %}
{% set name = "elpigraph-python" %}
package:
name: "{{ name|lower }}"
version: {{ data.get('version') }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 15ac2dcefe4d2a0b475359d10471f0ec2e8c069100dc81208c924efe845231dd
build:
noarch: python
number: 0
script: "{{ PYTHON }} -m pip install . --no-deps -vv"
requirements:
host:
- python
- pip
run:
- python
- numpy >=1.16.2
- pandas >=0.23.4
- numba >=0.49.1
- scikit-learn >=0.21.3
- scipy >=1.2.0
- python-igraph >=0.7.1
- networkx >=2.0
- matplotlib-base
- shapely
test:
imports:
- elpigraph
- elpigraph.src
about:
home: https://github.com/j-bac/elpigraph-python
license: GPL-2.0-or-later
license_family: GPL
license_file: LICENSE
summary: 'Elastic Principal Graphs algorithm (ElPiGraph) for Python'
description: |
elpigraph-python is a package implementing the Elastic Principal Graphs algorithm for manifold learning.
doc_url: https://elpigraph-python.readthedocs.io/
dev_url: https://github.com/elpigraph-python/elpigraph/
extra:
recipe-maintainers:
- j-bac
- auranic