-
Notifications
You must be signed in to change notification settings - Fork 13
/
meta.yaml
40 lines (33 loc) · 843 Bytes
/
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
{% set name = "cma-es" %}
{% set version = "1.5.0" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: 9bfa5b9f8a47f8ddf8cb3baa6d417de72536546720e56ac0ba393dfdcb9d19f0
build:
number: 0
noarch: python
script: "{{ PYTHON }} -m pip install . -vv"
requirements:
host:
- pip
- python >=3.6
run:
- python >=3.6
- tensorflow
test:
imports:
- cma
about:
home: "https://github.com/srom/cma-es"
license: MIT
license_family: MIT
license_file: LICENSE
summary: "Covariance Matrix Adaptation Evolution Strategy (CMA-ES) implemented with TensorFlow"
doc_url: "https://github.com/srom/cma-es"
dev_url: "https://github.com/srom/cma-es"
extra:
recipe-maintainers:
- srom