agentic-qwen-cli / pyproject.toml
Taperx's picture
Add pyproject.toml for uv installation
a69f8cc
Raw
History Blame Contribute Delete
413 Bytes
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "agentic-qwen-cli"
version = "0.1.0"
description = "A custom Qwen-powered CLI tool"
dependencies = [
# Add your dependencies here, for example:
"huggingface_hub",
"click",
]
[project.scripts]
# This defines the terminal command.
# Format: command_name = "module_name:function_name"
qwen-cli = "app:main"