Files
goose/pyproject.toml
2024-09-02 22:01:57 -07:00

53 lines
1.3 KiB
TOML

[project]
name = "goose-ai"
description = "a programming agent that runs on your machine"
version = "0.8.6"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"attrs>=23.2.0",
"rich>=13.7.1",
"ruamel-yaml>=0.18.6",
"ai-exchange>=0.8.4",
"click>=8.1.7",
"prompt-toolkit>=3.0.47",
]
author = [{ name = "Block", email = "ai-oss-tools@block.xyz" }]
packages = [{ include = "goose", from = "src" }]
[tool.hatch.build.targets.wheel]
packages = ["src/goose"]
[project.entry-points."metadata.plugins"]
goose-ai = "goose.module_name"
[project.entry-points."goose.toolkit"]
developer = "goose.toolkit.developer:Developer"
github = "goose.toolkit.github:Github"
screen = "goose.toolkit.screen:Screen"
repo_context = "goose.toolkit.repo_context.repo_context:RepoContext"
[project.entry-points."goose.profile"]
default = "goose.profile:default_profile"
[project.entry-points."goose.command"]
file = "goose.command.file:FileCommand"
[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"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"pytest>=8.3.2",
"codecov>=2.1.13",
]