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

feat: Add servicex client #27997

Merged
merged 1 commit into from
Oct 25, 2024
Merged
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
68 changes: 68 additions & 0 deletions recipes/servicex/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
{% set name = "servicex" %}
{% set version = "3.0.0" %}

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

source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/servicex-{{ version }}.tar.gz
sha256: 10fe7aa45ade9ba978563e20cf51f80aa149139423fd0b0766cd7e72e06e1f74

build:
noarch: python
entry_points:
- servicex = servicex.app.main:app
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
number: 0

requirements:
host:
- python >=3.8
- hatchling >=1.13.0
- pip
run:
- python >=3.8
- qastle >=0.17
- func-adl >=3.2.6
- requests >=2.31
- pydantic >=2.6.0
- aiohttp-retry >=2.8.3
- httpx >=0.24
- miniopy-async >=1.20.1
- tinydb >=4.7
- google-auth >=2.17
- typer >=0.12.1
- pyyaml >=6.0
- types-pyyaml >=6.0
- importlib-metadata # python <= 3.9
- typing_extensions # python <= 3.10
Comment on lines +38 to +39
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice to keep the comments! Reminder to remove when we bump the min Python.

- rich >=13.0.0
- aiofile
- make-it-sync
- ruamel.yaml >=0.18
- ccorp-yaml-include-relative-path >=0.0.4
- filelock >=3.12.0
- tenacity >=9.0.0

test:
imports:
- servicex
commands:
- pip check
- servicex --help
requires:
- pip

about:
home: https://github.com/ssl-hep/ServiceX_frontend
summary: Python SDK and CLI Client for ServiceX
license: BSD-3-Clause
license_file: LICENSE
doc_url: https://servicex-frontend.readthedocs.io/
dev_url: https://github.com/ssl-hep/ServiceX_frontend


extra:
recipe-maintainers:
- matthewfeickert