summaryrefslogtreecommitdiff
path: root/astropy
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2016-05-23 17:19:35 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2016-05-23 17:19:35 -0400
commit25e728fa805fb4f0ce3bcb44e53c4f926f26e110 (patch)
tree7106ac5a5b294a037d7b2090f873e4222f409f78 /astropy
parentc9e9db1e619f63562ed6261d7e01c83dd71ac10e (diff)
downloadastroconda-dev-25e728fa805fb4f0ce3bcb44e53c4f926f26e110.tar.gz
Reintroducing astropy recipe
Diffstat (limited to 'astropy')
-rw-r--r--astropy/bld.bat3
-rw-r--r--astropy/build.sh1
-rw-r--r--astropy/meta.yaml51
3 files changed, 55 insertions, 0 deletions
diff --git a/astropy/bld.bat b/astropy/bld.bat
new file mode 100644
index 0000000..c50c85a
--- /dev/null
+++ b/astropy/bld.bat
@@ -0,0 +1,3 @@
+
+python setup.py install --offline
+if errorlevel 1 exit 1 \ No newline at end of file
diff --git a/astropy/build.sh b/astropy/build.sh
new file mode 100644
index 0000000..762d43b
--- /dev/null
+++ b/astropy/build.sh
@@ -0,0 +1 @@
+python setup.py install
diff --git a/astropy/meta.yaml b/astropy/meta.yaml
new file mode 100644
index 0000000..187e63f
--- /dev/null
+++ b/astropy/meta.yaml
@@ -0,0 +1,51 @@
+{% set name = 'astropy' %}
+{% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")
+ +".dev"
+ +environ.get("GIT_DESCRIBE_NUMBER", "0") %}
+{% set number = '0' %}
+
+about:
+ home: https://github.com/spacetelescope/{{ name }}
+ license: BSD
+ summary: Astropy is a package intended to contain much of the core functionality and some common tools needed for performing astronomy and astrophysics with Python.
+build:
+ number: {{ number }}
+package:
+ name: {{ name }}
+ version: {{ version }}
+requirements:
+ build:
+ - cython
+ - jinja2
+ - setuptools
+ - numpy x.x
+ - python x.x
+ run:
+ - beautiful-soup [py27 or py34]
+ - beautifulsoup4 [py35]
+ - cython
+ - h5py
+ - ipython
+ - jinja2
+ - matplotlib
+ - mpmath
+ - pandas
+ - pytz
+ - pyyaml
+ - scikit-image
+ - scipy
+ - numpy x.x
+ - python x.x
+source:
+ git_url: https://github.com/astropy/{{ name }}
+test:
+ commands:
+ - fits2bitmap --help
+ - fitscheck --help
+ - fitsdiff --help
+ - fitsinfo --help
+ - samp_hub --help
+ - volint --help
+ - wcslint --help
+ imports:
+ - astropy