pagina unica

This commit is contained in:
2026-06-10 18:21:33 +02:00
parent 7d0f10d21f
commit 37633920ce
108 changed files with 3874 additions and 1350 deletions
+10 -7
View File
@@ -9,11 +9,8 @@ description = "Plataforma profesional de gobernanza de agentes IA"
requires-python = ">=3.11"
authors = [{name = "Juan", email = "jm0x@proton.me"}]
[project.dependencies]
httpx = ">=0.27,<0.28"
[tool.setuptools.packages.find]
where = ["core/src", "common/src"]
where = ["core/src"]
namespaces = false
[tool.ruff]
@@ -25,7 +22,7 @@ select = ["E", "F", "W", "I", "N", "UP", "B", "C4", "SIM", "ASYNC", "RUF"]
ignore = ["E501"]
[tool.ruff.lint.isort]
known-first-party = ["forja_core", "forja_common"]
known-first-party = ["forja_core"]
[tool.mypy]
python_version = "3.11"
@@ -36,14 +33,20 @@ disallow_untyped_defs = true
plugins = ["pydantic.mypy"]
[[tool.mypy.overrides]]
module = ["guardrails.*", "presidio_analyzer.*", "nemoguardrails.*", "langgraph.*", "yaml", "jsonschema"]
module = [
"presidio_analyzer.*",
"langgraph.*",
"yaml",
"jsonschema",
"azure.*",
]
ignore_missing_imports = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
addopts = "-ra -q --strict-markers"
pythonpath = ["core/src", "common/src"]
pythonpath = ["core/src"]
markers = [
"integration: integration tests (slower, may touch FS)",
]