This commit is contained in:
2026-03-04 10:01:49 +03:00
commit de787ce7ee
107 changed files with 2801 additions and 0 deletions

22
pyproject.toml Normal file
View File

@@ -0,0 +1,22 @@
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "plba"
version = "0.1.0"
description = "Platform runtime for business applications"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.129.0",
"PyYAML>=6.0.3",
"uvicorn>=0.41.0",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]