diff options
author | Joe Hunkeler <jhunk@stsci.edu> | 2016-03-23 17:00:53 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunk@stsci.edu> | 2016-04-19 11:17:20 -0400 |
commit | f46565fe6f3eefd6a8eb1cec7179164f2800b042 (patch) | |
tree | b57ece5acd84c9a8c9235818b975a439c8ae3df9 /ginga | |
download | astroconda-dev-f46565fe6f3eefd6a8eb1cec7179164f2800b042.tar.gz |
Initial commit
Diffstat (limited to 'ginga')
-rw-r--r-- | ginga/bld.bat | 3 | ||||
-rw-r--r-- | ginga/build.sh | 3 | ||||
-rw-r--r-- | ginga/meta.yaml | 25 |
3 files changed, 31 insertions, 0 deletions
diff --git a/ginga/bld.bat b/ginga/bld.bat new file mode 100644 index 0000000..b290566 --- /dev/null +++ b/ginga/bld.bat @@ -0,0 +1,3 @@ + +python setup.py install +if errorlevel 1 exit 1
\ No newline at end of file diff --git a/ginga/build.sh b/ginga/build.sh new file mode 100644 index 0000000..d0bc088 --- /dev/null +++ b/ginga/build.sh @@ -0,0 +1,3 @@ + +echo > README.txt +python setup.py install || exit 1
\ No newline at end of file diff --git a/ginga/meta.yaml b/ginga/meta.yaml new file mode 100644 index 0000000..7a74291 --- /dev/null +++ b/ginga/meta.yaml @@ -0,0 +1,25 @@ +about: + home: https://github.com/ejeschke/ginga + license: BSD + summary: ginga +build: + number: '0' +package: + name: ginga + version: 2.5.20151215011852 +requirements: + build: + - numpy x.x + - setuptools + - python x.x + run: + - numpy x.x + - python x.x +source: + fn: ginga-2.5.20151215011852.tar.gz + md5: 11cd8b9ed459c4438cc827e0a1ca4538 + url: + - https://pypi.python.org/packages/source/g/ginga/ginga-2.5.20151215011852.tar.gz +test: + imports: + - ginga |