From 4728c61c288cf928d6939d457239e04dc6407c39 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 6 Jul 2015 15:34:52 -0400 Subject: Initial commit --- photutils/photutils.ini | 50 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 photutils/photutils.ini (limited to 'photutils') 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 -- cgit