From 28993213aff252f46af9bd9eedfbad4a6d8246d9 Mon Sep 17 00:00:00 2001 From: Richie Cahill Date: Tue, 28 Apr 2026 23:02:18 -0400 Subject: [PATCH] fixed pyproject.toml --- pyprject.toml | 0 pyproject.toml | 22 ++++++++++++++++++++++ 2 files changed, 22 insertions(+) delete mode 100644 pyprject.toml create mode 100644 pyproject.toml diff --git a/pyprject.toml b/pyprject.toml deleted file mode 100644 index e69de29..0000000 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..4bfb941 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,22 @@ +[project] +name = "ds-testing-pipelines" +version = "0.1.0" +description = "Data science pipeline tools and legislative dashboard." +requires-python = ">=3.12" +dependencies = [ + "fastapi", + "httpx", + "uvicorn[standard]", + "jinja2", + "sqlalchemy", + "psycopg", +] + +[project.optional-dependencies] +test = [ + "pytest", +] + +[tool.pytest.ini_options] +testpaths = ["tests"] +pythonpath = ["."]