Initial commit

This commit is contained in:
2026-03-24 18:28:37 -04:00
commit e2b6081811
11 changed files with 720 additions and 0 deletions

20
pyproject.toml Normal file
View File

@ -0,0 +1,20 @@
[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"