diff options
author | Joe Hunkeler <jhunk@stsci.edu> | 2015-12-17 19:11:13 -0500 |
---|---|---|
committer | Joe Hunkeler <jhunk@stsci.edu> | 2015-12-17 19:11:13 -0500 |
commit | 333c7bc0212c59913b7a4f147e7c56d716738d10 (patch) | |
tree | df9fd40371e76f59e5859523098fc600e26a7b67 | |
parent | aff20391448c6eb18cef252e737653b06f4ac5b2 (diff) | |
download | cbc-recipes-333c7bc0212c59913b7a4f147e7c56d716738d10.tar.gz |
Initial commit
-rw-r--r-- | astroimtools/astroimtools.ini | 35 | ||||
-rw-r--r-- | asv/asv.ini | 43 | ||||
-rw-r--r-- | cube-tools/cube-tools.ini | 34 | ||||
-rw-r--r-- | ginga/ginga.ini | 42 | ||||
-rw-r--r-- | stginga/stginga.ini | 43 | ||||
-rw-r--r-- | stsci-data-analysis/stsci-data-analysis.ini | 40 |
6 files changed, 237 insertions, 0 deletions
diff --git a/astroimtools/astroimtools.ini b/astroimtools/astroimtools.ini new file mode 100644 index 0000000..3cb459e --- /dev/null +++ b/astroimtools/astroimtools.ini @@ -0,0 +1,35 @@ +[package] +name: astroimtools +version: {{ environ.get("GIT_DESCRIBE_TAG", "0.0.0") }}.git + +[about] +home: https://github.com/spacetelescope/${package:name} +license: BSD +summary: ${package:name} +readme: README.rst + +[source] +#fn: ${package:name}-${package:version}.tar.gz +#url: ${cbc_cgi:url}/${fn} +git_url: ${about:home} + +[build] +number: {{ environ.get("GIT_DESCRIBE_NUMBER", 0) }} + +[requirements] +build: + astropy + setuptools + python + +run: + astropy + python + +[cbc_build] +linux: + python setup.py install --offline || exit 1 + +windows: + python setup.py install --offline + if errorlevel 1 exit 1 diff --git a/asv/asv.ini b/asv/asv.ini new file mode 100644 index 0000000..e93fc83 --- /dev/null +++ b/asv/asv.ini @@ -0,0 +1,43 @@ +[package] +name: asv +version: {{ environ.get("GIT_DESCRIBE_TAG", "0.0.0") }}.git + +[about] +home: https://github.com/spacetelescope/${package:name} +license: BSD +summary: ${package:name} + +[source] +#fn: ${package:name}-${package:version}.tar.gz +#url: ${cbc_cgi:url}/${fn} +git_url: ${about:home} + +[build] +number: {{ environ.get("GIT_DESCRIBE_NUMBER", 0) }} + +[requirements] +build: + six + sphinx + setuptools + python + +run: + six + python + +[test] +commands: + asv --help + +imports: + asv + +[cbc_build] +linux: + pip install --force sphinx_bootstrap_theme + python setup.py install || exit 1 + +windows: + python setup.py install + if errorlevel 1 exit 1 diff --git a/cube-tools/cube-tools.ini b/cube-tools/cube-tools.ini new file mode 100644 index 0000000..fb9bd37 --- /dev/null +++ b/cube-tools/cube-tools.ini @@ -0,0 +1,34 @@ +[package] +name: cube-tools +version: {{ environ.get("GIT_DESCRIBE_TAG", "0.0.0") }}.git + +[about] +home: https://github.com/spacetelescope/${package:name} +license: BSD +summary: ${package:name} + +[source] +#fn: ${package:name}-${package:version}.tar.gz +#url: ${cbc_cgi:url}/${fn} +git_url: ${about:home} + +[build] +number: {{ environ.get("GIT_DESCRIBE_NUMBER", 0) }} + +[requirements] +build: + setuptools + python + +run: + glueviz + specview + python + +[cbc_build] +linux: + python setup.py install || exit 1 + +windows: + python setup.py install + if errorlevel 1 exit 1 diff --git a/ginga/ginga.ini b/ginga/ginga.ini new file mode 100644 index 0000000..b521f49 --- /dev/null +++ b/ginga/ginga.ini @@ -0,0 +1,42 @@ +[package] +name: ginga +version: 2.5.20151215011852 + +[about] +home: https://github.com/ejeschke/${package:name} +license: BSD +summary: ${package:name} + +[source] +fn: ${package:name}-${package:version}.tar.gz +url: https://pypi.python.org/packages/source/g/${package:name}/${fn} +md5: 11cd8b9ed459c4438cc827e0a1ca4538 + +[build] +number: 0 + +[requirements] +build: + numpy + setuptools + python + +run: + numpy + python + +[test] +commands: + # ginga's utilties are non-standard. can't test them like this + +imports: + ginga + +[cbc_build] +linux: + echo > README.txt + python setup.py install || exit 1 + +windows: + python setup.py install + if errorlevel 1 exit 1 diff --git a/stginga/stginga.ini b/stginga/stginga.ini new file mode 100644 index 0000000..dee8344 --- /dev/null +++ b/stginga/stginga.ini @@ -0,0 +1,43 @@ +[package] +name: stginga +version: {{ environ.get("GIT_DESCRIBE_TAG", "0.0.0") }}.git + +[about] +home: https://github.com/spacetelescope/${package:name} +license: BSD +summary: ${package:name} + +[source] +#fn: ${package:name}-${package:version}.tar.gz +#url: ${cbc_cgi:url}/${fn} +git_url: ${about:home} + +[build] +number: {{ environ.get("GIT_DESCRIBE_NUMBER", 0) }} + +[requirements] +build: + ginga + astropy + setuptools + python + +run: + ginga + astropy + python + +[test] +commands: + stginga --help + +imports: + stginga + +[cbc_build] +linux: + python setup.py install || exit 1 + +windows: + python setup.py install + if errorlevel 1 exit 1 diff --git a/stsci-data-analysis/stsci-data-analysis.ini b/stsci-data-analysis/stsci-data-analysis.ini new file mode 100644 index 0000000..480c6d0 --- /dev/null +++ b/stsci-data-analysis/stsci-data-analysis.ini @@ -0,0 +1,40 @@ +[package] +name : stsci-data-analysis +version : 1.0 + +[about] +home : http://stsci.edu +license : BSD +summary : ${package:name} meta-package + +[source] +#fn : ${package:name}-${package:version}.tar.gz +#url : ${about:home}/${fn} + +[build] +number : 0 + +[requirements] +build : + ${requirements:run} +run : + specview [py27 or py3k] + astroimtools [py27 or py3k] + cube-tools [py27 or py3k] + stginga [py27 or py3k] + asv [py27 or py3k] + pyasdf [py27 or py3k] + + +[test] +imports : + +commands : + + +[cbc_build] +linux : + echo "meta-package" + +windows : + echo "meta-package" |