diff options
author | Todd Miller <jmiller@stsci.edu> | 2018-10-08 11:29:58 -0400 |
---|---|---|
committer | Todd Miller <jmiller@stsci.edu> | 2018-10-08 11:29:58 -0400 |
commit | 829b9f0571af9ed22114b70071a1ae7317706e4c (patch) | |
tree | f44e9bc0352998d09c28934ee0760a5b01c632a1 /stregion | |
parent | ff7bb35c63ef298df2207dbfdc49e441cec0e2ae (diff) | |
parent | d75fa7d104a59296efa95bafb7c17b46e7e18dd6 (diff) | |
download | astroconda-contrib-829b9f0571af9ed22114b70071a1ae7317706e4c.tar.gz |
Merge branch 'master' of https://github.com/astroconda/astroconda-contrib into update-crds-version
Diffstat (limited to 'stregion')
-rw-r--r-- | stregion/bld.bat | 1 | ||||
-rw-r--r-- | stregion/build.sh | 1 | ||||
-rw-r--r-- | stregion/meta.yaml | 39 |
3 files changed, 41 insertions, 0 deletions
diff --git a/stregion/bld.bat b/stregion/bld.bat new file mode 100644 index 0000000..39b5e1f --- /dev/null +++ b/stregion/bld.bat @@ -0,0 +1 @@ +%PYTHON% setup.py install diff --git a/stregion/build.sh b/stregion/build.sh new file mode 100644 index 0000000..5a5aeeb --- /dev/null +++ b/stregion/build.sh @@ -0,0 +1 @@ +$PYTHON setup.py install diff --git a/stregion/meta.yaml b/stregion/meta.yaml new file mode 100644 index 0000000..419a24c --- /dev/null +++ b/stregion/meta.yaml @@ -0,0 +1,39 @@ +{% set name = 'stregion' %} +{% set version = '1.1.4' %} +{% set number = '0' %} + +about: + home: https://github.com/spacetelescope/{{ name }} + license: BSD + summary: Python parser for ds9 region files + +build: + number: {{ number }} + +package: + name: {{ name }} + version: {{ version }} + +requirements: + build: + - astropy + - cython + - numpy {{ numpy }} + - pyparsing + - python {{ python }} + - setuptools + run: + - astropy + - cython + - numpy + - pyparsing + - setuptools + - python + +source: + git_tag: {{ version }} + git_url: https://github.com/spacetelescope/{{ name }}.git + +test: + imports: + - stregion |