feat: initial project setup

This commit is contained in:
Stijnvandenbroek
2026-03-06 12:25:07 +00:00
commit e1a67da3ce
33 changed files with 2069 additions and 0 deletions

12
backend/pyproject.toml Normal file
View File

@@ -0,0 +1,12 @@
[project]
name = "house-elo-ranking"
version = "1.0.0"
description = "Pairwise comparison and ELO ranking of house listings"
requires-python = ">=3.12"
dependencies = [
"fastapi==0.115.0",
"uvicorn[standard]==0.30.6",
"sqlalchemy==2.0.35",
"psycopg2-binary==2.9.9",
"pydantic==2.9.2",
]