diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-05 21:38:26 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-05 21:38:26 -0400 |
commit | ef05cf7e26fac8efeb79fed672d2e090f7c1ec18 (patch) | |
tree | 147b107d368d524cceb9ed6d868c9726bcd41c22 /stsci.stimage | |
parent | 32598146d79a7643a5c02eea778ca7e9d43ac55f (diff) | |
download | cbc-recipes-ef05cf7e26fac8efeb79fed672d2e090f7c1ec18.tar.gz |
Initial commit
Diffstat (limited to 'stsci.stimage')
-rw-r--r-- | stsci.stimage/stsci.stimage.ini | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/stsci.stimage/stsci.stimage.ini b/stsci.stimage/stsci.stimage.ini new file mode 100644 index 0000000..5fd141d --- /dev/null +++ b/stsci.stimage/stsci.stimage.ini @@ -0,0 +1,53 @@ +[cbc_cgi] +local_server: true +local_port: 8888 +local_sources: /srv/conda/sources +protocol: http +url: ${cbc_cgi:protocol}://localhost:${cbc_cgi:local_port} + +[package] +name: stsci.stimage +version: 0.2 + +[about] +home: https://github.com/embray/${package:name} +license: GPL +summary: ${package:name} +#readme: README.md + +[source] +fn: ${package:name}-${package:version}.tar.gz +url: ${cbc_cgi:url}/${fn} +#git_url: git@bitbucket.org:jhunkeler/stsci.stimage.git + +[build] +number: 1 +# Namespace package workaround +#preserve_egg_dir: yes + +[requirements] +build: + d2to1 + stsci.distutils + distribute + setuptools + numpy + python + +run: + d2to1 + stsci.distutils + distribute + numpy + python + + +[cbc_build] +linux: + echo This d2to1 hack is deadly. + pip install --no-deps --upgrade --force d2to1 || exit 1 + python setup.py install || exit 1 + +windows: + python setup.py install --single-version-externally-managed --record=record.txt + if errorlevel 1 exit 1 |