diff options
| author | Matt Rendina <rendinam@users.noreply.github.com> | 2019-03-11 15:34:13 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-11 15:34:13 -0400 | 
| commit | 3e5ec3fd71b29e5a8aa3a8119977d19bc3376a58 (patch) | |
| tree | 096db474e0b6a29d9d7c38ac43eaae904eeaa840 /jplephem/meta.yaml | |
| parent | 55a936e0fd218943f4778465cbcc50dadeb6ec88 (diff) | |
| download | astroconda-contrib-3e5ec3fd71b29e5a8aa3a8119977d19bc3376a58.tar.gz | |
Add jplephem (#488)
Diffstat (limited to 'jplephem/meta.yaml')
| -rw-r--r-- | jplephem/meta.yaml | 34 | 
1 files changed, 34 insertions, 0 deletions
diff --git a/jplephem/meta.yaml b/jplephem/meta.yaml new file mode 100644 index 0000000..a551e5a --- /dev/null +++ b/jplephem/meta.yaml @@ -0,0 +1,34 @@ +{% set name = 'jplephem' %} +{% set version = '2.9' %} +{% set number = '0' %} +about: +    home: https://github.com/brandon-rhodes/python-{{ name }} +    license: MIT +    summary: "Python version of NASA DE4xx ephemerides, the basis for the Astronomical Alamanac" + +build: +    number: {{ number }} + +package: +    name: {{ name }} +    version: {{ version }} + +requirements: +    build: +    - setuptools +    - numpy {{ numpy }} +    - python {{ python }} + +    run: +    - numpy +    - python + +source: +    git_url: https://github.com/brandon-rhodes/python-{{ name }}.git +    patches: +    - 0001_use-setuptools.patch + +test: +    imports: +    - jplephem +    - jplephem.spk  | 
