Initial project structure added.

The following are in a minimal working state:

- Database schema
- Basic database interaction
- Configuration file parsing
- Command line interface
- Basic route handling for categories, auth and health
- Simple static webapp files
This commit is contained in:
2025-12-23 23:25:48 +01:00
parent b744e7f0c0
commit b4c84ab7ea
18 changed files with 711 additions and 0 deletions

21
pyproject.toml Normal file
View File

@@ -0,0 +1,21 @@
[project]
name = "mft"
version = "0.1.0"
description = "Minimal Finance Tracker - A simple expense tracking application"
requires-python = ">=3.12"
dependencies = [
"fastapi",
"uvicorn[standard]",
]
[project.optional-dependencies]
dev = [
"pytest"
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project.scripts]
mft = "mft.cli:main"