diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2017-08-10 11:44:31 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-10 11:44:31 -0400 |
commit | 5c622c8e25a14957ee67ae960b988e65e82979bf (patch) | |
tree | de686af229a8003da4ab62f249d150268e03385c /py-expression-eval/meta.yaml | |
parent | 1f681b09203e640fe5af4e3f86b6db415917b068 (diff) | |
download | astroconda-contrib-5c622c8e25a14957ee67ae960b988e65e82979bf.tar.gz |
Initial commit of py_expression_eval (#250)
Diffstat (limited to 'py-expression-eval/meta.yaml')
-rw-r--r-- | py-expression-eval/meta.yaml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/py-expression-eval/meta.yaml b/py-expression-eval/meta.yaml new file mode 100644 index 0000000..1222220 --- /dev/null +++ b/py-expression-eval/meta.yaml @@ -0,0 +1,33 @@ +{% set name = 'py-expression-eval' %} +{% set version = '0.3.4' %} +{% set tag = 'v' + version %} +{% set number = '0' %} + +about: + home: https://github.com/Axiacore/{{ name }} + license: MIT + description: Python Mathematical Expression Evaluator + +package: + name: {{ name }} + version: {{ version }} + +build: + number: {{ number }} + +requirements: + build: + - setuptools + - python + + run: + - python + +source: + git_tag: {{ tag }} + git_url: https://github.com/Axiacore/{{ name }}.git + +test: + imports: + - py_expression_eval + |