-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmeta.yaml
42 lines (36 loc) · 955 Bytes
/
meta.yaml
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
package:
name: webgeocalc
version: {{ environ.get('GIT_DESCRIBE_TAG', '') }}
source:
git_url: .
build:
noarch: python
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }}
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -v "
requirements:
build:
- python {{ python }}
- pip
- pbr
run:
- python {{ python }}
- requests
- pbr
test:
imports:
- webgeocalc
about:
home: https://github.com/seignovert/python-webgeocalc
license: MIT
license_family: MIT
summary: Python package for NAIF WebGeoCalc API
description: |
In december 2018, JPL/NAIF announced an experimental
API RESTful interface for their new WebGeoCalc server
(which make online SPICE calculations).
This package is an early attempt to provide a Python
interface to make SPICE calculation through this API.
doc_url: https://webgeocalc.readthedocs.io/
extra:
recipe-maintainers:
- seignovert