51 lines
994 B
TOML
51 lines
994 B
TOML
[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",
|
|
"aiohttp>=3.9",
|
|
"pypdf>=4.0",
|
|
"fastapi>=0.115",
|
|
"uvicorn>=0.32",
|
|
"jinja2>=3.1",
|
|
]
|
|
|
|
[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"]
|