Initial Python rewrite
This commit is contained in:
44
pyproject.toml
Normal file
44
pyproject.toml
Normal file
@@ -0,0 +1,44 @@
|
||||
[project]
|
||||
name = "capa-de-integracion"
|
||||
version = "0.1.0"
|
||||
description = "Orchestrator service for conversational AI - Python implementation"
|
||||
readme = "README.md"
|
||||
authors = [
|
||||
{ name = "A8065384", email = "anibal.angulo.cardoza@banorte.com" }
|
||||
]
|
||||
requires-python = ">=3.12"
|
||||
dependencies = [
|
||||
"fastapi>=0.115.0",
|
||||
"uvicorn[standard]>=0.32.0",
|
||||
"pydantic>=2.10.0",
|
||||
"pydantic-settings>=2.6.0",
|
||||
"google-cloud-dialogflow-cx>=1.45.0",
|
||||
"google-cloud-firestore>=2.20.0",
|
||||
"google-cloud-aiplatform>=1.75.0",
|
||||
"google-generativeai>=0.8.0",
|
||||
"google-cloud-dlp>=3.30.0",
|
||||
"redis[hiredis]>=5.2.0",
|
||||
"tenacity>=9.0.0",
|
||||
"python-multipart>=0.0.12",
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
capa-de-integracion = "capa_de_integracion:main"
|
||||
|
||||
[build-system]
|
||||
requires = ["uv_build>=0.9.22,<0.10.0"]
|
||||
build-backend = "uv_build"
|
||||
|
||||
[dependency-groups]
|
||||
dev = [
|
||||
"inline-snapshot>=0.32.1",
|
||||
"pytest>=9.0.2",
|
||||
"pytest-cov>=7.0.0",
|
||||
"pytest-recording>=0.13.4",
|
||||
"ruff>=0.15.1",
|
||||
"ty>=0.0.17",
|
||||
]
|
||||
|
||||
[tool.ruff.lint]
|
||||
select = ['ALL']
|
||||
ignore = []
|
||||
Reference in New Issue
Block a user