Olubakka / pyproject.toml
Sachi Wagaarachchi
updated reqs, [email protected]
8fa49bb
raw
history blame contribute delete
472 Bytes
[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"]