mirror of
https://github.com/czl9707/build-your-own-openclaw.git
synced 2026-08-14 00:47:59 +00:00
23 lines
424 B
TOML
23 lines
424 B
TOML
[project]
|
|
name = "my-bot"
|
|
version = "0.1.0"
|
|
description = "Step 00: Basic chat loop agent"
|
|
requires-python = ">=3.11"
|
|
|
|
dependencies = [
|
|
"litellm>=1.0.0",
|
|
"typer>=0.9.0",
|
|
"rich>=13.0.0",
|
|
"pydantic>=2.0.0",
|
|
"pyyaml>=6.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/mybot"]
|
|
|
|
[project.scripts]
|
|
my-bot = "mybot.cli.main:app" |