diff options
author | Daniel M. Pelt <D.M.Pelt@cwi.nl> | 2015-06-10 12:45:52 -0500 |
---|---|---|
committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2015-12-04 16:08:06 +0100 |
commit | b7c5deba2182514ffd6af61bac65ec9e0c0ebfd7 (patch) | |
tree | 972a908aea4091f32f293e7e9ea061493e8e45ae /python/conda/meta.yaml | |
parent | b6891106eb167e7399a88efe858abccb8b3dd0c0 (diff) | |
download | astra-b7c5deba2182514ffd6af61bac65ec9e0c0ebfd7.tar.gz astra-b7c5deba2182514ffd6af61bac65ec9e0c0ebfd7.tar.bz2 astra-b7c5deba2182514ffd6af61bac65ec9e0c0ebfd7.tar.xz astra-b7c5deba2182514ffd6af61bac65ec9e0c0ebfd7.zip |
Add conda build scripts
Diffstat (limited to 'python/conda/meta.yaml')
-rw-r--r-- | python/conda/meta.yaml | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/python/conda/meta.yaml b/python/conda/meta.yaml new file mode 100644 index 0000000..45ea812 --- /dev/null +++ b/python/conda/meta.yaml @@ -0,0 +1,40 @@ +package: + name: astra-toolbox + version: '1.6' + +source: + git_url: https://github.com/astra-toolbox/astra-toolbox.git + git_tag: v1.6 + +build: + number: 0 + script_env: + - CUDA_ROOT + - MAKEOPTS + +test: + imports: + - astra + +requirements: + build: + - python + - cython >=0.13 + - numpy + - six + + run: + - python + - numpy + - scipy + - six + + +about: + home: http://sourceforge.net/p/astra-toolbox/wiki/Home/ + license: GPLv3 + summary: 'The ASTRA Toolbox is a Python toolbox of high-performance GPU primitives for 2D and 3D tomography.' + +# See +# http://docs.continuum.io/conda/build.html for +# more information about meta.yaml |