File size: 472 Bytes
8483978 b55cdbe 8483978 b55cdbe 8483978 8fa49bb 548061b 8fa49bb 548061b 8fc941e 8483978 398730f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools", "wheel"] # PEP 508 specifications.
build-backend = "setuptools.build_meta"
[project]
name = "gradio-qwen-app"
version = "0.1.0"
description = "Gradio app with Qwen models"
requires-python = ">=3.10"
dependencies = [
"numpy>=2.2",
"transformers",
"torch",
"accelerate",
"huggingface_hub",
"gradio",
]
[tool.setuptools]
packages.find.where = ["src"]
|