initial commit after split

This commit is contained in:
2026-06-24 01:43:10 +02:00
parent b1d6c0150f
commit 30c11a6dcf
173 changed files with 25380 additions and 0 deletions

39
pyproject.toml Normal file
View File

@@ -0,0 +1,39 @@
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "govoplan-core"
version = "0.1.0"
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.115,<1",
"pydantic>=2,<3",
"pydantic-settings>=2,<3",
"cryptography>=44,<45",
"celery>=5,<6",
"redis>=5,<6",
"alembic>=1,<2",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
govoplan_core = ["py.typed"]
[project.entry-points."govoplan.modules"]
access = "govoplan_core.access.manifest:get_manifest"
[project.optional-dependencies]
server = [
"uvicorn[standard]>=0.32,<1",
]
dev = [
"httpx==0.28.1",
]