diff options
Diffstat (limited to 'sphere')
-rw-r--r-- | sphere/meta.yaml | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/sphere/meta.yaml b/sphere/meta.yaml index 46d5b22..73773eb 100644 --- a/sphere/meta.yaml +++ b/sphere/meta.yaml @@ -2,31 +2,37 @@ {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0") +".dev" +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %} about: - home: https://github.com/spacetelescope/sphere + home: https://github.com/spacetelescope/{{ name }} license: BSD - summary: For handling spherical polygons that represent arbitrary regions of the sky + summary: For handling spherical polygons that represent arbitrary regions of the sky + build: number: {{ number }} + package: name: {{ name }} version: {{ version }} + requirements: build: - astropy - matplotlib - setuptools - - numpy x.x + - numpy - python x.x + run: - astropy - matplotlib - - numpy x.x + - numpy - python x.x + source: - git_url: https://github.com/spacetelescope/sphere + git_url: https://github.com/spacetelescope/{{ name }}.git + test: imports: - spherical_geometry |