-
Notifications
You must be signed in to change notification settings - Fork 1
/
meta.yaml
67 lines (57 loc) · 1.39 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
67
{% set pyproject = load_file_data('pyproject.toml', from_recipe_dir=True) %}
{% set project = pyproject.get('project') %}
{% set homepage = project.get('urls').get('Homepage') %}
{% set version = project.get('version')%}
{% set name = project.get('name') %}
{% set license_files = pyproject.get('tool').get('setuptools').get('license-files') %}
{% set description = project.get('description') %}
{% set license = project.get('license').get('text') %}
{% set python = project.get('requires-python') %}
package:
name: {{ name }}
version: {{ version }}
source:
path: .
build:
noarch: python
number: 6
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv"
requirements:
build:
- pip
- python {{ python }}
host:
- python {{ python }}
- assimulo
- cantera
- termcolor
- matplotlib
- pyyaml
- sympy
run:
- python {{ python }}
- assimulo
- cantera
- termcolor
- matplotlib
- pyyaml
- sympy
test:
imports:
- asali
source_files:
- tests
- run_tests.py
commands:
- python run_tests.py --local
about:
home: https://srebughini.github.io/ASALI/
summary: {{ description }}
license: {{ license }}
license_file: {{ license_files[0] }}
dev_url: {{ homepage }}
description: {{ description }}
doc_url: https://srebughini.github.io/ASALI/docs/api-python/
extra:
recipe-maintainers:
- srebughini