diff options
Diffstat (limited to 'pyfits')
-rw-r--r-- | pyfits/pyfits.ini | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/pyfits/pyfits.ini b/pyfits/pyfits.ini new file mode 100644 index 0000000..7e6ad97 --- /dev/null +++ b/pyfits/pyfits.ini @@ -0,0 +1,49 @@ +[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: pyfits +version: 3.3 + +[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} + +[build] +number: 1 + +[requirements] +build: + yaml + pyyaml + numpy + stsci.distutils + d2to1 + python + +run: + yaml + pyyaml + numpy + stsci.distutils + d2to1 + python + + +[cbc_build] +linux: + python setup.py install --single-version-externally-managed --record=record.txt || exit 1 + +windows: + python setup.py install + if errorlevel 1 exit 1 |