22 lines
428 B
TOML
22 lines
428 B
TOML
[project]
|
|
name = "dialogflow"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Anibal Angulo", email = "a8065384@banorte.com" }
|
|
]
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"google-cloud-dialogflow-cx",
|
|
"typer",
|
|
"rich"
|
|
]
|
|
|
|
[project.scripts]
|
|
conv-agents = "dialogflow.cli:app"
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.8.12,<0.9.0"]
|
|
build-backend = "uv_build"
|