Initial commit — Pedrito Hechakuaa v0

Bot de Telegram para monitoreo de notificaciones judiciales del PJ Paraguay.
Multi-tenant con onboarding conversacional, audit log, y polling automático.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
markosbenitez
2026-05-25 10:58:32 -03:00
commit 7743919695
24 changed files with 5242 additions and 0 deletions

45
pyproject.toml Normal file
View File

@@ -0,0 +1,45 @@
[project]
name = "pedrito-hechakuaa"
version = "0.1.0"
description = "Pedrito Hechakuaa — monitor de notificaciones judiciales via Telegram"
requires-python = ">=3.12"
dependencies = [
"httpx>=0.28",
"python-telegram-bot[ext]>=21.9",
"apscheduler>=3.10",
"cryptography>=44.0",
"pydantic>=2.9",
"pydantic-settings>=2.6",
"structlog>=24.4",
"python-dotenv>=1.0",
"aiosqlite>=0.20",
]
[dependency-groups]
dev = [
"pytest>=8.3",
"pytest-asyncio>=0.25",
"pytest-httpx>=0.34",
"ruff>=0.8",
"mypy>=1.13",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["."]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "ASYNC"]
ignore = ["E501"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]