Added PEP 723 metadata to download_deps.py (#4988)

### What problem does this PR solve?

Added PEP 723 metadata to download_deps.py

### Type of change

- [x] Refactoring
This commit is contained in:
Zhichang Yu
2025-02-15 14:54:21 +08:00
committed by GitHub
parent f9fe6ac642
commit 6daae7f226
2 changed files with 9 additions and 5 deletions

View File

@ -1,8 +1,13 @@
#!/usr/bin/env python3
#
# Install this script's dependencies with pip3:
# pip3 install huggingface-hub nltk
# PEP 723 metadata
# /// script
# requires-python = ">=3.10"
# dependencies = [
# "huggingface-hub",
# "nltk",
# ]
# ///
from huggingface_hub import snapshot_download
import nltk