From f04a6e54fad06a0ab260a8ee434eb552115d3be1 Mon Sep 17 00:00:00 2001 From: Clayton Davis Date: Thu, 7 Apr 2022 15:14:55 -0400 Subject: [PATCH 1/2] updated base fork with modzy sdk package recipe --- modzy-sdk/meta.yaml | 47 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 modzy-sdk/meta.yaml diff --git a/modzy-sdk/meta.yaml b/modzy-sdk/meta.yaml new file mode 100644 index 0000000000000..3ee5b375332df --- /dev/null +++ b/modzy-sdk/meta.yaml @@ -0,0 +1,47 @@ +{% set name = "modzy-sdk" %} +{% set version = "0.7.0" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/modzy-sdk-{{ version }}.tar.gz + sha256: 0acde1f075a83fa2b708d98ef0c315030fc54d9abf2097359f75b162b1e1ec0d + +build: + noarch: python + script: {{ PYTHON }} -m pip install . -vv + number: 0 + +requirements: + host: + - pip + - python >=3.6 + run: + - deprecation + - google-api-python-client + - grpcio + - protobuf + - python >=3.6 + - python-dotenv + - requests + +test: + imports: + - modzy + - samples + commands: + - pip check + requires: + - pip + +about: + home: https://github.com/modzy/sdk-python + summary: Modzy's Python SDK queries models, submits inference jobs and returns results directly to your editor. + license: Apache-2.0 + license_file: LICENSE + +extra: + recipe-maintainers: + - modzyopensource From 9fd8621c5adfaca3f5d56d964d7c077596bdd1a1 Mon Sep 17 00:00:00 2001 From: Clayton Davis Date: Thu, 7 Apr 2022 15:21:44 -0400 Subject: [PATCH 2/2] moved modzy-sdk to recipe folder --- {modzy-sdk => recipes/modzy-sdk}/meta.yaml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {modzy-sdk => recipes/modzy-sdk}/meta.yaml (100%) diff --git a/modzy-sdk/meta.yaml b/recipes/modzy-sdk/meta.yaml similarity index 100% rename from modzy-sdk/meta.yaml rename to recipes/modzy-sdk/meta.yaml