Spaces:
Sleeping
Sleeping
File size: 413 Bytes
a69f8cc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | [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"
|