21 lines
437 B
TOML
21 lines
437 B
TOML
[project]
|
|
name = "fingerp"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = [
|
|
{name = "Colin Powell",email = "colin@unbl.ink"}
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"fastapi (>=0.135.2,<0.136.0)",
|
|
"uvicorn (>=0.42.0,<0.43.0)",
|
|
"sqlalchemy (>=2.0.48,<3.0.0)",
|
|
"aiosqlite (>=0.22.1,<0.23.0)"
|
|
]
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|