[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"