diff options
-rw-r--r-- | extension-helpers/meta.yaml | 34 | ||||
-rw-r--r-- | stsynphot/meta.yaml | 3 | ||||
-rw-r--r-- | synphot/meta.yaml | 1 |
3 files changed, 37 insertions, 1 deletions
diff --git a/extension-helpers/meta.yaml b/extension-helpers/meta.yaml new file mode 100644 index 0000000..ade4a6a --- /dev/null +++ b/extension-helpers/meta.yaml @@ -0,0 +1,34 @@ +{% set name = "extension-helpers" %} +{% set version = "0.1" %} + +package: + name: "{{ name|lower }}" + version: "{{ version }}" + +source: + url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz + sha256: ac8a6fe91c6d98986a51a9f08ca0c7945f8fd70d95b662ced4040ae5eb973882 + +build: + number: 0 + script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed --no-cache-dir -vvv " + +requirements: + host: + - pip + - python + run: + - python + +about: + home: The package home page + license: BSD + license_family: BSD + license_file: + summary: Summary of the package + doc_url: + dev_url: + +extra: + recipe-maintainers: + - your-github-id-here diff --git a/stsynphot/meta.yaml b/stsynphot/meta.yaml index 477eec0..ca93daf 100644 --- a/stsynphot/meta.yaml +++ b/stsynphot/meta.yaml @@ -1,7 +1,7 @@ {% set reponame = 'stsynphot_refactor' %} {% set name = 'stsynphot' %} {% set version = '0.2.1' %} -{% set number = '0' %} +{% set number = '1' %} about: home: https://github.com/spacetelescope/{{ reponame }} @@ -20,6 +20,7 @@ requirements: build: - synphot >=0.2 - astropy >=2.0 + - extension-helpers - scipy >=0.14 - beautifulsoup4 - numpy {{ numpy }} diff --git a/synphot/meta.yaml b/synphot/meta.yaml index 1823c2e..7b9407d 100644 --- a/synphot/meta.yaml +++ b/synphot/meta.yaml @@ -19,6 +19,7 @@ package: requirements: build: - astropy >=2.0 + - extension-helpers - scipy >=0.14 - numpy {{ numpy }} - pytest |