-
Notifications
You must be signed in to change notification settings - Fork 410
/
meta.yaml
54 lines (47 loc) · 1.05 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
{% set name = "smop" %}
{% set version = "0.41" %}
{% set file_ext = "tar.gz" %}
{% set hash_type = "sha256" %}
{% set hash_value = "594188a25dc346e27fdd5507a6a0a3cced1cc3defaf02d7e236e41e8714558d4" %}
package:
name: '{{ name|lower }}'
version: '{{ version }}'
source:
fn: '{{ name }}-{{ version }}.{{ file_ext }}'
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.{{ file_ext }}
'{{ hash_type }}': '{{ hash_value }}'
build:
number: 0
entry_points:
- smop = smop.main:main
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
host:
- python
- setuptools
- ply
- numpy
- scipy
- networkx
run:
- python
- ply
- numpy
- scipy
- networkx
test:
imports:
- smop
commands:
- smop --help
about:
home: https://github.com/victorlei/smop
license: MIT
license_family: MIT
license_file: ''
summary: Matlab to Python converter
description: ''
doc_url: ''
dev_url: ''
extra:
recipe-maintainers: ''