pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Import py-huggingface-hub-0.26.1 as wip/py-huggingface-hub



Module Name:	pkgsrc-wip
Committed By:	Min S. Kim <minskim%NetBSD.org@localhost>
Pushed By:	minskim
Date:		Fri Nov 29 13:59:29 2024 -0800
Changeset:	7351d5f8ae06694d832bc7c2ea6f5d160371f39f

Modified Files:
	Makefile
Added Files:
	py-huggingface-hub/ALTERNATIVES
	py-huggingface-hub/COMMIT_MSG
	py-huggingface-hub/DESCR
	py-huggingface-hub/Makefile
	py-huggingface-hub/PLIST
	py-huggingface-hub/distinfo

Log Message:
Import py-huggingface-hub-0.26.1 as wip/py-huggingface-hub

The huggingface_hub library allows you to interact with the Hugging
Face Hub, a machine learning platform for creators and collaborators.
Discover pre-trained models and datasets for your projects or play with
the hundreds of machine learning apps hosted on the Hub. You can also
create and share your own models and datasets with the community. The
huggingface_hub library provides a simple way to do all these things
with Python.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=7351d5f8ae06694d832bc7c2ea6f5d160371f39f

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 Makefile                        |   1 +
 py-huggingface-hub/ALTERNATIVES |   1 +
 py-huggingface-hub/COMMIT_MSG   |   9 ++
 py-huggingface-hub/DESCR        |   7 +
 py-huggingface-hub/Makefile     |  32 ++++
 py-huggingface-hub/PLIST        | 337 ++++++++++++++++++++++++++++++++++++++++
 py-huggingface-hub/distinfo     |   5 +
 7 files changed, 392 insertions(+)

diffs:
diff --git a/Makefile b/Makefile
index fa1b0f49b4..663c675837 100644
--- a/Makefile
+++ b/Makefile
@@ -3903,6 +3903,7 @@ SUBDIR+=	py-htseq
 SUBDIR+=	py-http-prompt
 SUBDIR+=	py-httpie-jwt-auth
 SUBDIR+=	py-hug
+SUBDIR+=	py-huggingface-hub
 SUBDIR+=	py-hugo
 SUBDIR+=	py-hvac
 SUBDIR+=	py-hybridlfpy
diff --git a/py-huggingface-hub/ALTERNATIVES b/py-huggingface-hub/ALTERNATIVES
new file mode 100644
index 0000000000..b9e13315b5
--- /dev/null
+++ b/py-huggingface-hub/ALTERNATIVES
@@ -0,0 +1 @@
+bin/huggingface-cli @PREFIX@/bin/huggingface-cli-@PYVERSSUFFIX@
diff --git a/py-huggingface-hub/COMMIT_MSG b/py-huggingface-hub/COMMIT_MSG
new file mode 100644
index 0000000000..3d6af35fa5
--- /dev/null
+++ b/py-huggingface-hub/COMMIT_MSG
@@ -0,0 +1,9 @@
+net/py-huggingface-hub: Add py-huggingface-hub 0.26.1
+
+The huggingface_hub library allows you to interact with the Hugging
+Face Hub, a machine learning platform for creators and collaborators.
+Discover pre-trained models and datasets for your projects or play with
+the hundreds of machine learning apps hosted on the Hub. You can also
+create and share your own models and datasets with the community. The
+huggingface_hub library provides a simple way to do all these things
+with Python.
diff --git a/py-huggingface-hub/DESCR b/py-huggingface-hub/DESCR
new file mode 100644
index 0000000000..d6965559fb
--- /dev/null
+++ b/py-huggingface-hub/DESCR
@@ -0,0 +1,7 @@
+The huggingface_hub library allows you to interact with the Hugging
+Face Hub, a machine learning platform for creators and collaborators.
+Discover pre-trained models and datasets for your projects or play with
+the hundreds of machine learning apps hosted on the Hub. You can also
+create and share your own models and datasets with the community. The
+huggingface_hub library provides a simple way to do all these things
+with Python.
diff --git a/py-huggingface-hub/Makefile b/py-huggingface-hub/Makefile
new file mode 100644
index 0000000000..a75941a57a
--- /dev/null
+++ b/py-huggingface-hub/Makefile
@@ -0,0 +1,32 @@
+# $NetBSD$
+
+DISTNAME=	huggingface_hub-0.26.1
+PKGNAME=	${PYPKGPREFIX:S/_/-/}-${DISTNAME}
+CATEGORIES=	python
+MASTER_SITES=	${MASTER_SITE_PYPI:=h/huggingface-hub/}
+
+MAINTAINER=	minskim%NetBSD.org@localhost
+HOMEPAGE=	https://huggingface.co/docs/huggingface_hub
+COMMENT=	The official Python client for the Huggingface Hub
+LICENSE=	apache-2.0
+
+TOOL_DEPENDS+=	${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
+TOOL_DEPENDS+=	${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel
+DEPENDS+=	${PYPKGPREFIX}-filelock-[0-9]*:../../devel/py-filelock
+DEPENDS+=	${PYPKGPREFIX}-fsspec>=2023.5.0:../../sysutils/py-fsspec
+DEPENDS+=	${PYPKGPREFIX}-packaging>=20.9:../../devel/py-packaging
+DEPENDS+=	${PYPKGPREFIX}-requests-[0-9]*:../../devel/py-requests
+DEPENDS+=	${PYPKGPREFIX}-tqdm>=4.42.1:../../misc/py-tqdm
+DEPENDS+=	${PYPKGPREFIX}-typing-extensions>=3.7.4.3:../../devel/py-typing-extensions
+DEPENDS+=	${PYPKGPREFIX}-yaml>=5.1:../../textproc/py-yaml
+
+USE_LANGUAGES=		# none
+
+INSTALLATION_DIRS=	bin
+
+post-install:
+	cd ${DESTDIR}${PREFIX}/bin && ${MV} huggingface-cli huggingface-cli-${PYVERSSUFFIX}
+
+.include "../../lang/python/application.mk"
+.include "../../lang/python/wheel.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/py-huggingface-hub/PLIST b/py-huggingface-hub/PLIST
new file mode 100644
index 0000000000..3de08f56f6
--- /dev/null
+++ b/py-huggingface-hub/PLIST
@@ -0,0 +1,337 @@
+@comment $NetBSD$
+bin/huggingface-cli-${PYVERSSUFFIX}
+${PYSITELIB}/${WHEEL_INFODIR}/LICENSE
+${PYSITELIB}/${WHEEL_INFODIR}/METADATA
+${PYSITELIB}/${WHEEL_INFODIR}/RECORD
+${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
+${PYSITELIB}/${WHEEL_INFODIR}/entry_points.txt
+${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt
+${PYSITELIB}/huggingface_hub/__init__.py
+${PYSITELIB}/huggingface_hub/__init__.pyc
+${PYSITELIB}/huggingface_hub/__init__.pyo
+${PYSITELIB}/huggingface_hub/_commit_api.py
+${PYSITELIB}/huggingface_hub/_commit_api.pyc
+${PYSITELIB}/huggingface_hub/_commit_api.pyo
+${PYSITELIB}/huggingface_hub/_commit_scheduler.py
+${PYSITELIB}/huggingface_hub/_commit_scheduler.pyc
+${PYSITELIB}/huggingface_hub/_commit_scheduler.pyo
+${PYSITELIB}/huggingface_hub/_inference_endpoints.py
+${PYSITELIB}/huggingface_hub/_inference_endpoints.pyc
+${PYSITELIB}/huggingface_hub/_inference_endpoints.pyo
+${PYSITELIB}/huggingface_hub/_local_folder.py
+${PYSITELIB}/huggingface_hub/_local_folder.pyc
+${PYSITELIB}/huggingface_hub/_local_folder.pyo
+${PYSITELIB}/huggingface_hub/_login.py
+${PYSITELIB}/huggingface_hub/_login.pyc
+${PYSITELIB}/huggingface_hub/_login.pyo
+${PYSITELIB}/huggingface_hub/_multi_commits.py
+${PYSITELIB}/huggingface_hub/_multi_commits.pyc
+${PYSITELIB}/huggingface_hub/_multi_commits.pyo
+${PYSITELIB}/huggingface_hub/_snapshot_download.py
+${PYSITELIB}/huggingface_hub/_snapshot_download.pyc
+${PYSITELIB}/huggingface_hub/_snapshot_download.pyo
+${PYSITELIB}/huggingface_hub/_space_api.py
+${PYSITELIB}/huggingface_hub/_space_api.pyc
+${PYSITELIB}/huggingface_hub/_space_api.pyo
+${PYSITELIB}/huggingface_hub/_tensorboard_logger.py
+${PYSITELIB}/huggingface_hub/_tensorboard_logger.pyc
+${PYSITELIB}/huggingface_hub/_tensorboard_logger.pyo
+${PYSITELIB}/huggingface_hub/_upload_large_folder.py
+${PYSITELIB}/huggingface_hub/_upload_large_folder.pyc
+${PYSITELIB}/huggingface_hub/_upload_large_folder.pyo
+${PYSITELIB}/huggingface_hub/_webhooks_payload.py
+${PYSITELIB}/huggingface_hub/_webhooks_payload.pyc
+${PYSITELIB}/huggingface_hub/_webhooks_payload.pyo
+${PYSITELIB}/huggingface_hub/_webhooks_server.py
+${PYSITELIB}/huggingface_hub/_webhooks_server.pyc
+${PYSITELIB}/huggingface_hub/_webhooks_server.pyo
+${PYSITELIB}/huggingface_hub/commands/__init__.py
+${PYSITELIB}/huggingface_hub/commands/__init__.pyc
+${PYSITELIB}/huggingface_hub/commands/__init__.pyo
+${PYSITELIB}/huggingface_hub/commands/_cli_utils.py
+${PYSITELIB}/huggingface_hub/commands/_cli_utils.pyc
+${PYSITELIB}/huggingface_hub/commands/_cli_utils.pyo
+${PYSITELIB}/huggingface_hub/commands/delete_cache.py
+${PYSITELIB}/huggingface_hub/commands/delete_cache.pyc
+${PYSITELIB}/huggingface_hub/commands/delete_cache.pyo
+${PYSITELIB}/huggingface_hub/commands/download.py
+${PYSITELIB}/huggingface_hub/commands/download.pyc
+${PYSITELIB}/huggingface_hub/commands/download.pyo
+${PYSITELIB}/huggingface_hub/commands/env.py
+${PYSITELIB}/huggingface_hub/commands/env.pyc
+${PYSITELIB}/huggingface_hub/commands/env.pyo
+${PYSITELIB}/huggingface_hub/commands/huggingface_cli.py
+${PYSITELIB}/huggingface_hub/commands/huggingface_cli.pyc
+${PYSITELIB}/huggingface_hub/commands/huggingface_cli.pyo
+${PYSITELIB}/huggingface_hub/commands/lfs.py
+${PYSITELIB}/huggingface_hub/commands/lfs.pyc
+${PYSITELIB}/huggingface_hub/commands/lfs.pyo
+${PYSITELIB}/huggingface_hub/commands/repo_files.py
+${PYSITELIB}/huggingface_hub/commands/repo_files.pyc
+${PYSITELIB}/huggingface_hub/commands/repo_files.pyo
+${PYSITELIB}/huggingface_hub/commands/scan_cache.py
+${PYSITELIB}/huggingface_hub/commands/scan_cache.pyc
+${PYSITELIB}/huggingface_hub/commands/scan_cache.pyo
+${PYSITELIB}/huggingface_hub/commands/tag.py
+${PYSITELIB}/huggingface_hub/commands/tag.pyc
+${PYSITELIB}/huggingface_hub/commands/tag.pyo
+${PYSITELIB}/huggingface_hub/commands/upload.py
+${PYSITELIB}/huggingface_hub/commands/upload.pyc
+${PYSITELIB}/huggingface_hub/commands/upload.pyo
+${PYSITELIB}/huggingface_hub/commands/upload_large_folder.py
+${PYSITELIB}/huggingface_hub/commands/upload_large_folder.pyc
+${PYSITELIB}/huggingface_hub/commands/upload_large_folder.pyo
+${PYSITELIB}/huggingface_hub/commands/user.py
+${PYSITELIB}/huggingface_hub/commands/user.pyc
+${PYSITELIB}/huggingface_hub/commands/user.pyo
+${PYSITELIB}/huggingface_hub/commands/version.py
+${PYSITELIB}/huggingface_hub/commands/version.pyc
+${PYSITELIB}/huggingface_hub/commands/version.pyo
+${PYSITELIB}/huggingface_hub/community.py
+${PYSITELIB}/huggingface_hub/community.pyc
+${PYSITELIB}/huggingface_hub/community.pyo
+${PYSITELIB}/huggingface_hub/constants.py
+${PYSITELIB}/huggingface_hub/constants.pyc
+${PYSITELIB}/huggingface_hub/constants.pyo
+${PYSITELIB}/huggingface_hub/errors.py
+${PYSITELIB}/huggingface_hub/errors.pyc
+${PYSITELIB}/huggingface_hub/errors.pyo
+${PYSITELIB}/huggingface_hub/fastai_utils.py
+${PYSITELIB}/huggingface_hub/fastai_utils.pyc
+${PYSITELIB}/huggingface_hub/fastai_utils.pyo
+${PYSITELIB}/huggingface_hub/file_download.py
+${PYSITELIB}/huggingface_hub/file_download.pyc
+${PYSITELIB}/huggingface_hub/file_download.pyo
+${PYSITELIB}/huggingface_hub/hf_api.py
+${PYSITELIB}/huggingface_hub/hf_api.pyc
+${PYSITELIB}/huggingface_hub/hf_api.pyo
+${PYSITELIB}/huggingface_hub/hf_file_system.py
+${PYSITELIB}/huggingface_hub/hf_file_system.pyc
+${PYSITELIB}/huggingface_hub/hf_file_system.pyo
+${PYSITELIB}/huggingface_hub/hub_mixin.py
+${PYSITELIB}/huggingface_hub/hub_mixin.pyc
+${PYSITELIB}/huggingface_hub/hub_mixin.pyo
+${PYSITELIB}/huggingface_hub/inference/__init__.py
+${PYSITELIB}/huggingface_hub/inference/__init__.pyc
+${PYSITELIB}/huggingface_hub/inference/__init__.pyo
+${PYSITELIB}/huggingface_hub/inference/_client.py
+${PYSITELIB}/huggingface_hub/inference/_client.pyc
+${PYSITELIB}/huggingface_hub/inference/_client.pyo
+${PYSITELIB}/huggingface_hub/inference/_common.py
+${PYSITELIB}/huggingface_hub/inference/_common.pyc
+${PYSITELIB}/huggingface_hub/inference/_common.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/__init__.py
+${PYSITELIB}/huggingface_hub/inference/_generated/__init__.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/__init__.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/_async_client.py
+${PYSITELIB}/huggingface_hub/inference/_generated/_async_client.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/_async_client.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/__init__.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/__init__.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/__init__.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/audio_classification.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/audio_classification.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/audio_classification.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/audio_to_audio.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/audio_to_audio.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/audio_to_audio.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/automatic_speech_recognition.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/automatic_speech_recognition.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/automatic_speech_recognition.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/base.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/base.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/base.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/chat_completion.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/chat_completion.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/chat_completion.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/depth_estimation.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/depth_estimation.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/depth_estimation.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/document_question_answering.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/document_question_answering.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/document_question_answering.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/feature_extraction.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/feature_extraction.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/feature_extraction.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/fill_mask.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/fill_mask.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/fill_mask.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/image_classification.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/image_classification.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/image_classification.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/image_segmentation.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/image_segmentation.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/image_segmentation.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/image_to_image.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/image_to_image.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/image_to_image.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/image_to_text.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/image_to_text.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/image_to_text.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/object_detection.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/object_detection.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/object_detection.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/question_answering.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/question_answering.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/question_answering.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/sentence_similarity.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/sentence_similarity.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/sentence_similarity.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/summarization.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/summarization.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/summarization.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/table_question_answering.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/table_question_answering.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/table_question_answering.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/text2text_generation.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/text2text_generation.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/text2text_generation.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/text_classification.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/text_classification.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/text_classification.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/text_generation.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/text_generation.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/text_generation.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/text_to_audio.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/text_to_audio.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/text_to_audio.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/text_to_image.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/text_to_image.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/text_to_image.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/text_to_speech.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/text_to_speech.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/text_to_speech.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/token_classification.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/token_classification.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/token_classification.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/translation.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/translation.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/translation.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/video_classification.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/video_classification.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/video_classification.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/visual_question_answering.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/visual_question_answering.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/visual_question_answering.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/zero_shot_classification.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/zero_shot_classification.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/zero_shot_classification.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/zero_shot_image_classification.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/zero_shot_image_classification.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/zero_shot_image_classification.pyo
+${PYSITELIB}/huggingface_hub/inference/_generated/types/zero_shot_object_detection.py
+${PYSITELIB}/huggingface_hub/inference/_generated/types/zero_shot_object_detection.pyc
+${PYSITELIB}/huggingface_hub/inference/_generated/types/zero_shot_object_detection.pyo
+${PYSITELIB}/huggingface_hub/inference_api.py
+${PYSITELIB}/huggingface_hub/inference_api.pyc
+${PYSITELIB}/huggingface_hub/inference_api.pyo
+${PYSITELIB}/huggingface_hub/keras_mixin.py
+${PYSITELIB}/huggingface_hub/keras_mixin.pyc
+${PYSITELIB}/huggingface_hub/keras_mixin.pyo
+${PYSITELIB}/huggingface_hub/lfs.py
+${PYSITELIB}/huggingface_hub/lfs.pyc
+${PYSITELIB}/huggingface_hub/lfs.pyo
+${PYSITELIB}/huggingface_hub/repocard.py
+${PYSITELIB}/huggingface_hub/repocard.pyc
+${PYSITELIB}/huggingface_hub/repocard.pyo
+${PYSITELIB}/huggingface_hub/repocard_data.py
+${PYSITELIB}/huggingface_hub/repocard_data.pyc
+${PYSITELIB}/huggingface_hub/repocard_data.pyo
+${PYSITELIB}/huggingface_hub/repository.py
+${PYSITELIB}/huggingface_hub/repository.pyc
+${PYSITELIB}/huggingface_hub/repository.pyo
+${PYSITELIB}/huggingface_hub/serialization/__init__.py
+${PYSITELIB}/huggingface_hub/serialization/__init__.pyc
+${PYSITELIB}/huggingface_hub/serialization/__init__.pyo
+${PYSITELIB}/huggingface_hub/serialization/_base.py
+${PYSITELIB}/huggingface_hub/serialization/_base.pyc
+${PYSITELIB}/huggingface_hub/serialization/_base.pyo
+${PYSITELIB}/huggingface_hub/serialization/_tensorflow.py
+${PYSITELIB}/huggingface_hub/serialization/_tensorflow.pyc
+${PYSITELIB}/huggingface_hub/serialization/_tensorflow.pyo
+${PYSITELIB}/huggingface_hub/serialization/_torch.py
+${PYSITELIB}/huggingface_hub/serialization/_torch.pyc
+${PYSITELIB}/huggingface_hub/serialization/_torch.pyo
+${PYSITELIB}/huggingface_hub/templates/datasetcard_template.md
+${PYSITELIB}/huggingface_hub/templates/modelcard_template.md
+${PYSITELIB}/huggingface_hub/utils/__init__.py
+${PYSITELIB}/huggingface_hub/utils/__init__.pyc
+${PYSITELIB}/huggingface_hub/utils/__init__.pyo
+${PYSITELIB}/huggingface_hub/utils/_auth.py
+${PYSITELIB}/huggingface_hub/utils/_auth.pyc
+${PYSITELIB}/huggingface_hub/utils/_auth.pyo
+${PYSITELIB}/huggingface_hub/utils/_cache_assets.py
+${PYSITELIB}/huggingface_hub/utils/_cache_assets.pyc
+${PYSITELIB}/huggingface_hub/utils/_cache_assets.pyo
+${PYSITELIB}/huggingface_hub/utils/_cache_manager.py
+${PYSITELIB}/huggingface_hub/utils/_cache_manager.pyc
+${PYSITELIB}/huggingface_hub/utils/_cache_manager.pyo
+${PYSITELIB}/huggingface_hub/utils/_chunk_utils.py
+${PYSITELIB}/huggingface_hub/utils/_chunk_utils.pyc
+${PYSITELIB}/huggingface_hub/utils/_chunk_utils.pyo
+${PYSITELIB}/huggingface_hub/utils/_datetime.py
+${PYSITELIB}/huggingface_hub/utils/_datetime.pyc
+${PYSITELIB}/huggingface_hub/utils/_datetime.pyo
+${PYSITELIB}/huggingface_hub/utils/_deprecation.py
+${PYSITELIB}/huggingface_hub/utils/_deprecation.pyc
+${PYSITELIB}/huggingface_hub/utils/_deprecation.pyo
+${PYSITELIB}/huggingface_hub/utils/_experimental.py
+${PYSITELIB}/huggingface_hub/utils/_experimental.pyc
+${PYSITELIB}/huggingface_hub/utils/_experimental.pyo
+${PYSITELIB}/huggingface_hub/utils/_fixes.py
+${PYSITELIB}/huggingface_hub/utils/_fixes.pyc
+${PYSITELIB}/huggingface_hub/utils/_fixes.pyo
+${PYSITELIB}/huggingface_hub/utils/_git_credential.py
+${PYSITELIB}/huggingface_hub/utils/_git_credential.pyc
+${PYSITELIB}/huggingface_hub/utils/_git_credential.pyo
+${PYSITELIB}/huggingface_hub/utils/_headers.py
+${PYSITELIB}/huggingface_hub/utils/_headers.pyc
+${PYSITELIB}/huggingface_hub/utils/_headers.pyo
+${PYSITELIB}/huggingface_hub/utils/_hf_folder.py
+${PYSITELIB}/huggingface_hub/utils/_hf_folder.pyc
+${PYSITELIB}/huggingface_hub/utils/_hf_folder.pyo
+${PYSITELIB}/huggingface_hub/utils/_http.py
+${PYSITELIB}/huggingface_hub/utils/_http.pyc
+${PYSITELIB}/huggingface_hub/utils/_http.pyo
+${PYSITELIB}/huggingface_hub/utils/_lfs.py
+${PYSITELIB}/huggingface_hub/utils/_lfs.pyc
+${PYSITELIB}/huggingface_hub/utils/_lfs.pyo
+${PYSITELIB}/huggingface_hub/utils/_pagination.py
+${PYSITELIB}/huggingface_hub/utils/_pagination.pyc
+${PYSITELIB}/huggingface_hub/utils/_pagination.pyo
+${PYSITELIB}/huggingface_hub/utils/_paths.py
+${PYSITELIB}/huggingface_hub/utils/_paths.pyc
+${PYSITELIB}/huggingface_hub/utils/_paths.pyo
+${PYSITELIB}/huggingface_hub/utils/_runtime.py
+${PYSITELIB}/huggingface_hub/utils/_runtime.pyc
+${PYSITELIB}/huggingface_hub/utils/_runtime.pyo
+${PYSITELIB}/huggingface_hub/utils/_safetensors.py
+${PYSITELIB}/huggingface_hub/utils/_safetensors.pyc
+${PYSITELIB}/huggingface_hub/utils/_safetensors.pyo
+${PYSITELIB}/huggingface_hub/utils/_subprocess.py
+${PYSITELIB}/huggingface_hub/utils/_subprocess.pyc
+${PYSITELIB}/huggingface_hub/utils/_subprocess.pyo
+${PYSITELIB}/huggingface_hub/utils/_telemetry.py
+${PYSITELIB}/huggingface_hub/utils/_telemetry.pyc
+${PYSITELIB}/huggingface_hub/utils/_telemetry.pyo
+${PYSITELIB}/huggingface_hub/utils/_typing.py
+${PYSITELIB}/huggingface_hub/utils/_typing.pyc
+${PYSITELIB}/huggingface_hub/utils/_typing.pyo
+${PYSITELIB}/huggingface_hub/utils/_validators.py
+${PYSITELIB}/huggingface_hub/utils/_validators.pyc
+${PYSITELIB}/huggingface_hub/utils/_validators.pyo
+${PYSITELIB}/huggingface_hub/utils/endpoint_helpers.py
+${PYSITELIB}/huggingface_hub/utils/endpoint_helpers.pyc
+${PYSITELIB}/huggingface_hub/utils/endpoint_helpers.pyo
+${PYSITELIB}/huggingface_hub/utils/insecure_hashlib.py
+${PYSITELIB}/huggingface_hub/utils/insecure_hashlib.pyc
+${PYSITELIB}/huggingface_hub/utils/insecure_hashlib.pyo
+${PYSITELIB}/huggingface_hub/utils/logging.py
+${PYSITELIB}/huggingface_hub/utils/logging.pyc
+${PYSITELIB}/huggingface_hub/utils/logging.pyo
+${PYSITELIB}/huggingface_hub/utils/sha.py
+${PYSITELIB}/huggingface_hub/utils/sha.pyc
+${PYSITELIB}/huggingface_hub/utils/sha.pyo
+${PYSITELIB}/huggingface_hub/utils/tqdm.py
+${PYSITELIB}/huggingface_hub/utils/tqdm.pyc
+${PYSITELIB}/huggingface_hub/utils/tqdm.pyo
diff --git a/py-huggingface-hub/distinfo b/py-huggingface-hub/distinfo
new file mode 100644
index 0000000000..a0e56f3f20
--- /dev/null
+++ b/py-huggingface-hub/distinfo
@@ -0,0 +1,5 @@
+$NetBSD$
+
+BLAKE2s (huggingface_hub-0.26.1.tar.gz) = 86c88859d228f1e56ac5784f86a9d09e1e99a3d654943bb5287481cce4d15ebd
+SHA512 (huggingface_hub-0.26.1.tar.gz) = b41818f7c9db0af3c237d76b548a62c0453be4159ab39502a8f676a4ee038466e0baaf467e2ec9861c1ec0ee61e40948b0a1386092a21c54c661e55dba95fdf7
+Size (huggingface_hub-0.26.1.tar.gz) = 375458 bytes


Home | Main Index | Thread Index | Old Index