Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add recipy for xcube-zenodo #28642

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 55 additions & 0 deletions recipes/xcube-zenodo/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{% set name = "xcube-zenodo" %}
{% set version = "0.1.0" %}
{% set python_min = "3.10" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://github.com/xcube-dev/xcube-zenodo/archive/refs/tags/v0.1.0.tar.gz
sha256: 205008d464ae1506853218e034ab9ce213a07c6ce3cc3e4f7975f29fe5bbe9f6

build:
number: 0
noarch: python
script: "{{ PYTHON }} -m pip install . -vv"

requirements:
host:
- python {{ python_min }}
- pip
- setuptools
run:
# Python
- python >={{ python_min }}
# Required
- fsspec
- numpy
- requests
- tabulate
- xarray
- xcube >=1.7.0

test:
requires:
- python {{ python_min }}
imports:
- xcube_zenodo

about:
summary: xcube-zenodo is a xcube data store to open data resource published on zenodo.org.
home: https://github.com/xcube-dev/xcube-zenodo
license: MIT
license_family: MIT
license_file: LICENSE
description: xcube-zenodo is a Python package
dev_url: https://github.com/xcube-dev/xcube-zenodo

extra:
recipe-maintainers:
- konstntokas
- AliceBalfanz
- thomasstorm
- TejasMorbagal
- b-yogesh
Loading