spb/qwhpi Public
QHPI — Quebec Housing Price Index: quality-adjusted, hierarchically pooled housing price indexes.
Python 63.9%
TypeScript 25.4%
CSS 5.5%
TeX 3.5%
SQL 0.8%
Makefile 0.5%
Dockerfile 0.5%
1# =============================================================================2# QWHPI — Quebec Weekly Housing Price Index3# Author : Simon-Pierre Boucher4# Contact : contact@spboucher.ai5# File : api/pyproject.toml6# Purpose : Package metadata and dependencies for the QWHPI API service.7# =============================================================================89[project]10name = "qwhpi-api"11version = "0.1.0"12description = "Quebec Weekly Housing Price Index — API service"13authors = [{ name = "Simon-Pierre Boucher", email = "contact@spboucher.ai" }]14requires-python = ">=3.12"15dependencies = [16 "fastapi>=0.110",17 "uvicorn>=0.29",18 "polars>=1.0",19 "pydantic>=2.7",20 "psycopg[binary]>=3.1; extra == 'postgres'",21]2223[project.optional-dependencies]24dev = ["pytest>=8", "httpx>=0.27"]2526[build-system]27requires = ["hatchling"]28build-backend = "hatchling.build"2930[tool.hatch.build.targets.wheel]31packages = ["app"]32