blob: e06a3c367300a1edeef8fd7db361173886c95df6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
{% set name = 'astropy' %}
{% set version = "4.0.0.dev" ~ GIT_DESCRIBE_NUMBER ~ "+" ~ GIT_DESCRIBE_HASH %}
{% if version[0] == 'v' %}
{% set version = version[1:] %}
{% endif %}
{% set number = '0' %}
about:
home: https://github.com/astropy/{{ 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:
skip: True [py27 or py33 or py34]
number: {{ number }}
package:
name: {{ name }}
version: {{ version }}
requirements:
build:
- cython
- jinja2
- pytest
- setuptools
- numpy {{ numpy }}
- python {{ python }}
run:
- beautifulsoup4
- cython
- h5py
- ipython
- jinja2
- matplotlib
- mpmath
- pandas
- pytest
- pytz
- pyyaml
- scikit-image
- scipy
- numpy
- python
source:
git_rev: "master"
git_url: https://github.com/astropy/{{ name }}.git
test:
commands:
- fits2bitmap --help
- fitscheck --help
- fitsdiff --help
- fitsinfo --help
- samp_hub --help
- volint --help
- wcslint --help
imports:
- astropy
|