2026-04-03 08:30:56 +03:00
|
|
|
[project]
|
|
|
|
|
name = "onguard24"
|
2026-04-03 15:56:58 +03:00
|
|
|
version = "1.10.1"
|
2026-04-03 08:30:56 +03:00
|
|
|
description = "onGuard24 — модульный сервис (аналог IRM)"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
requires-python = ">=3.11"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"fastapi>=0.115.0",
|
|
|
|
|
"uvicorn[standard]>=0.32.0",
|
|
|
|
|
"pydantic-settings>=2.6.0",
|
|
|
|
|
"python-dotenv>=1.0.1",
|
|
|
|
|
"asyncpg>=0.30.0",
|
|
|
|
|
"httpx>=0.28.0",
|
2026-04-03 08:36:35 +03:00
|
|
|
"sqlalchemy>=2.0.0",
|
|
|
|
|
"alembic>=1.14.0",
|
|
|
|
|
"psycopg[binary]>=3.2.0",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
|
dev = [
|
|
|
|
|
"pytest>=8.0.0",
|
|
|
|
|
"pytest-asyncio>=0.24.0",
|
|
|
|
|
"respx>=0.22.0",
|
2026-04-03 08:30:56 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
|
onguard = "onguard24.main:run"
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
|
requires = ["hatchling"]
|
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
|
packages = ["onguard24"]
|
|
|
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
|
line-length = 100
|
|
|
|
|
target-version = "py311"
|