diff options
Diffstat (limited to 'ginga/meta.yaml')
-rw-r--r-- | ginga/meta.yaml | 29 |
1 files changed, 19 insertions, 10 deletions
diff --git a/ginga/meta.yaml b/ginga/meta.yaml index 470f6bc..be744ad 100644 --- a/ginga/meta.yaml +++ b/ginga/meta.yaml @@ -1,11 +1,14 @@ {% set name = 'ginga' %} -{% set version = '2.5.20151215011852' %} -{% set number = '1' %} +{% set version = GIT_DESCRIBE_TAG ~ ".dev" ~ GIT_DESCRIBE_NUMBER ~ "+" ~ GIT_DESCRIBE_HASH %} +{% if version[0] == 'v' %} +{% set version = version[1:] %} +{% endif %} +{% set number = '0' %} about: - home: https://github.com/ejeschke/ginga + home: https://github.com/ejeschke/{{ name }} license: BSD - summary: ginga + summary: Astronomical data visualization build: number: {{ number }} @@ -16,18 +19,24 @@ package: requirements: build: - - numpy + - astropy + - qtpy + - pillow - setuptools - - python x.x + - numpy {{ numpy }} + - python {{ python }} run: + - astropy + - qtpy + - pillow - numpy - - python x.x + - python source: - fn: {{ name }}-{{ version }}.tar.gz - md5: 11cd8b9ed459c4438cc827e0a1ca4538 - url: https://pypi.python.org/packages/source/g/ginga/{{ name }}-{{ version }}.tar.gz + git_url: https://github.com/ejeschke/{{ name }}.git test: + commands: + - ginga --help imports: - ginga |