aboutsummaryrefslogtreecommitdiff
path: root/asdf-standard
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2015-07-06 19:01:27 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2015-07-06 19:01:27 -0400
commiteff83040e6a6b6e93d62d17dfe1d2f26ad19d94b (patch)
tree03f5d892edd7e571aea52e105ed89c48796feac2 /asdf-standard
parent1ade8ee00dd326d112d7df41b0ff3d8504c7b286 (diff)
downloadcbc-recipes-eff83040e6a6b6e93d62d17dfe1d2f26ad19d94b.tar.gz
Initial commit
Diffstat (limited to 'asdf-standard')
-rw-r--r--asdf-standard/asdf-standard.ini49
1 files changed, 49 insertions, 0 deletions
diff --git a/asdf-standard/asdf-standard.ini b/asdf-standard/asdf-standard.ini
new file mode 100644
index 0000000..9c04f87
--- /dev/null
+++ b/asdf-standard/asdf-standard.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: asdf-standard
+version: {{ environ.get("GIT_DESCRIBE_TAG", "0.0") }}.git
+
+[about]
+home: http://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}
+#git_tag:
+
+[build]
+number: {{ environ.get("GIT_DESCRIBE_NUMBER", 0) }}
+
+[requirements]
+build:
+ sphinx
+ #sphinx_bootstrap_theme
+ jsonschema
+ pyyaml
+ mistune
+ six [py27]
+ setuptools
+ python
+
+run:
+ nose
+ astropy
+ setuptools
+ python
+
+[cbc_build]
+linux:
+ python setup.py install || exit 1
+
+windows:
+ python setup.py install
+ if errorlevel 1 exit 1