aboutsummaryrefslogtreecommitdiff
path: root/asdf/asdf.ini
diff options
context:
space:
mode:
Diffstat (limited to 'asdf/asdf.ini')
-rw-r--r--asdf/asdf.ini48
1 files changed, 48 insertions, 0 deletions
diff --git a/asdf/asdf.ini b/asdf/asdf.ini
new file mode 100644
index 0000000..b01dfeb
--- /dev/null
+++ b/asdf/asdf.ini
@@ -0,0 +1,48 @@
+[package]
+name: asdf
+version: {{ environ.get("GIT_DESCRIBE_TAG", "0.0.0") }}.git
+
+[about]
+home: https://github.com/spacetelescope/pyasdf
+license: BSD
+summary: ${package:name}
+
+[source]
+git_url: ${about:home}
+
+[build]
+number: {{ environ.get("GIT_DESCRIBE_NUMBER", 0) }}
+
+[requirements]
+build:
+ astropy >=1.1
+ pyyaml
+ jsonschema
+ pytest
+ six
+ setuptools
+ python
+
+run:
+ astropy >=1.1
+ pyyaml
+ jsonschema
+ pytest
+ six
+ setuptools
+ python
+
+[test]
+commands:
+ asdftool --help
+
+imports:
+ asdf
+
+[cbc_build]
+linux:
+ python setup.py install || exit 1
+
+windows:
+ python setup.py install
+ if errorlevel 1 exit 1