migracion de streamlit a niceguy

This commit is contained in:
2026-05-23 21:46:44 +02:00
parent b4964261ec
commit 8c594f8ddf
14 changed files with 446 additions and 12 deletions
+12 -2
View File
@@ -9,6 +9,16 @@ 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"
[project.optional-dependencies]
web = ["nicegui>=2.0"]
[tool.setuptools.packages.find]
where = ["core/src", "common/src", "web/src"]
namespaces = false
[tool.ruff]
line-length = 100
target-version = "py311"
@@ -23,7 +33,7 @@ ignore = ["E501"]
"dashboard/src/forja_dashboard/pages/*" = ["N999"]
[tool.ruff.lint.isort]
known-first-party = ["forja_core", "forja_dashboard"]
known-first-party = ["forja_core", "forja_dashboard", "forja_common", "forja_web"]
[tool.mypy]
python_version = "3.11"
@@ -41,7 +51,7 @@ ignore_missing_imports = true
asyncio_mode = "auto"
testpaths = ["tests"]
addopts = "-ra -q --strict-markers"
pythonpath = ["core/src", "dashboard/src"]
pythonpath = ["core/src", "dashboard/src", "common/src", "web/src"]
markers = [
"integration: integration tests (slower, may touch FS)",
]