-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmeta.yaml
More file actions
44 lines (37 loc) · 987 Bytes
/
meta.yaml
File metadata and controls
44 lines (37 loc) · 987 Bytes
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
{% set name = "hexlite" %}
{% set version = "1.4.1" %}
{% set file_ext = "tar.gz" %}
package:
name: '{{ name|lower }}'
version: '{{ version }}'
source:
fn: '{{ name }}-{{ version }}.{{ file_ext }}'
url: https://pypi.python.org/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.{{ file_ext }}
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- setuptools
- python
- ply==3.11
- clingo==5.5.0
- jpype1==1.2.1
run:
- python
- ply==3.11
- clingo==5.5.0
- jpype1==1.2.1
test:
imports:
- dlvhex
- hexlite
- hexlite.ast
about:
home: https://github.com/hexhex/hexlite
license: GNU General Public License v3 (GPLv3)
license_family: GPL3
summary: HEXLite Python-based solver for a fragment of HEX
description: "see https://github.com/hexhex/hexlite"
extra:
recipe-maintainers: 'Peter Schueller <schueller.p@gmail.com>'