From 2ebeb7e7483038b1e5ed87cecf0e0d6b473f15c0 Mon Sep 17 00:00:00 2001 From: Danilo Reyes Date: Sun, 2 Nov 2025 00:45:09 -0600 Subject: [PATCH] chore: update pyproject.toml to include package configuration for setuptools - Added package configuration for the 'app' module in `pyproject.toml`. - Included `py.typed` in package data to support type checking. --- backend/pyproject.toml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 4fb34a7..065e3fd 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -2,7 +2,6 @@ name = "webref-backend" version = "1.0.0" description = "Reference Board Viewer - Backend API" -readme = "README.md" requires-python = ">=3.12" dependencies = [ "fastapi>=0.115.0", @@ -32,6 +31,12 @@ dev = [ requires = ["setuptools>=61.0"] build-backend = "setuptools.build_meta" +[tool.setuptools] +packages = ["app"] + +[tool.setuptools.package-data] +app = ["py.typed"] + [tool.ruff] # Exclude common paths exclude = [