diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-06 15:34:52 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-06 15:34:52 -0400 |
commit | 4728c61c288cf928d6939d457239e04dc6407c39 (patch) | |
tree | 49ec28482469661008e132054470e280253d65d1 | |
parent | 8198e9d35aa40678b1ee7dd20f95e29560d7b39e (diff) | |
download | cbc-recipes-4728c61c288cf928d6939d457239e04dc6407c39.tar.gz |
Initial commit
-rw-r--r-- | photutils/photutils.ini | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/photutils/photutils.ini b/photutils/photutils.ini new file mode 100644 index 0000000..6d994be --- /dev/null +++ b/photutils/photutils.ini @@ -0,0 +1,50 @@ +[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: photutils +#version: ${environ:GIT_DESCRIBE_TAG}.git +version: {{ environ.get("GIT_DESCRIBE_TAG", "") }}.git + +[about] +home: http://github.com/astropy/${package:name} +license: BSD +summary: ${package:name} + +[source] +#fn: ${package:name}-${package:version}.tar.gz +#url: ${cbc_cgi:url}/${fn} +git_url: ${about:home} +#git_tag: + +[build] +number: {{ environ.get("GIT_DESCRIBE_NUMBER", 0) }} + +[requirements] +build: + d2to1 + nose + astropy-helpers + astropy + setuptools + python + +run: + astropy-helpers + astropy + setuptools + 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 + if errorlevel 1 exit 1 |