All checks were successful
Dependency Audit / dependency-audit (push) Successful in 1m42s
45 lines
1.1 KiB
TOML
45 lines
1.1 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=69", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "govoplan-core"
|
|
version = "0.1.7"
|
|
description = "Reusable GovOPlaN platform core, access, tenancy, and RBAC components."
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
license = { file = "LICENSE" }
|
|
authors = [{ name = "GovOPlaN" }]
|
|
dependencies = [
|
|
"SQLAlchemy>=2.0,<3",
|
|
"fastapi>=0.139,<1",
|
|
"pydantic>=2,<3",
|
|
"pydantic-settings>=2,<3",
|
|
"cryptography>=48.0.1,<50",
|
|
"celery>=5,<6",
|
|
"redis>=5,<6",
|
|
"alembic>=1,<2",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.setuptools.package-data]
|
|
govoplan_core = ["py.typed"]
|
|
|
|
[project.scripts]
|
|
govoplan-config = "govoplan_core.commands.config:main"
|
|
govoplan-devserver = "govoplan_core.devserver:main"
|
|
govoplan-module-install-plan = "govoplan_core.commands.module_install_plan:main"
|
|
govoplan-module-installer = "govoplan_core.commands.module_installer:main"
|
|
|
|
[project.optional-dependencies]
|
|
server = [
|
|
"psycopg[binary]>=3.2,<4",
|
|
"uvicorn[standard]>=0.32,<1",
|
|
]
|
|
dev = [
|
|
"httpx==0.28.1",
|
|
"httpx2>=2.5,<3",
|
|
]
|