Enable cli options for plugin (#22)

* added the entry point for plugin with cli group option
This commit is contained in:
Lifei Zhou
2024-08-29 09:03:12 +10:00
committed by GitHub
parent 5aa12ec9ed
commit 6fef25aa62
3 changed files with 62 additions and 11 deletions
+4 -2
View File
@@ -1,7 +1,7 @@
[project]
name = "goose-ai"
description = "a programming agent that runs on your machine"
version = "0.8.0"
version = "0.8.1"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
@@ -30,9 +30,11 @@ default = "goose.profile:default_profile"
[project.entry-points."goose.command"]
file = "goose.command.file:FileCommand"
[project.entry-points."goose.cli"]
[project.entry-points."goose.cli.group"]
goose = "goose.cli.main:goose_cli"
[project.entry-points."goose.cli.group_option"]
[project.scripts]
goose = "goose.cli.main:cli"