24 lines
461 B
TOML
24 lines
461 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "plba"
|
|
version = "0.2.4"
|
|
description = "Platform runtime for business applications"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastapi>=0.129.0",
|
|
"PyMySQL>=1.1",
|
|
"PyYAML>=6.0.3",
|
|
"uvicorn>=0.41.0",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["src"]
|
|
testpaths = ["tests"]
|