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

Build Conda Package #104

Closed
wants to merge 1 commit into from
Closed
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
45 changes: 45 additions & 0 deletions conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{% set name = "hub-sdk" %}
{% set version = "0.0.4" %}

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

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/hub-sdk-{{ version }}.tar.gz
sha256: eea15e861a65e7ee8f466c85f0f7a214caded28683f0c2f3e6e1225828393f8d

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

requirements:
host:
- python >=3.8
- setuptools >=43.0.0
- wheel
- pip
run:
- python >=3.8
- requests

test:
imports:
- hub_sdk
commands:
- pip check
requires:
- pip

about:
home: https://docs.ultralytics.com/hub/sdk/
summary: Ultralytics HUB Client SDK.
dev_url: https://github.com/ultralytics/hub-sdk/
license: AGPL-3.0
license_file: LICENSE

extra:
recipe-maintainers:
- glenn-jocher
- kalenmike
Loading