-
Notifications
You must be signed in to change notification settings - Fork 3
/
meta.yaml
41 lines (35 loc) · 878 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
41
#{% set data = load_setup_py_data() %}
#{% set version = data.get('version') %}
{% set version = "0.1.3" %}
{% set buildnumber = 1 %}
package:
name: smp
version: {{version}}
source:
path: .
requirements:
build:
- python
run:
- python
build:
number: {{buildnumber}}
entry_points:
- python-smp = smp:_main
noarch_python: True
script: python setup.py install
test:
requires:
- intel_tester
files:
- intel_tester_config.py
commands:
- python -c "from intel_tester import test_routine; test_routine.test_exec()" # [linux]
- python-smp -h # [linux]
imports:
- smp
- SMP
about:
license: BSD
license_file: LICENSE
summary: a Static Multi-Processing module handling nested parallelism issues like oversubscription while composing different parallel components