Files
weave/pyproject.toml
2026-05-29 19:00:06 -04:00

29 lines
501 B
TOML

[project]
name = "ds-testing-pipelines"
version = "0.1.0"
description = "Data science pipeline tools and legislative dashboard."
requires-python = ">=3.12"
dependencies = [
"alembic",
"fastapi",
"httpx",
"jinja2",
"psycopg",
"sqlalchemy",
"typer",
"uvicorn[standard]",
"workos",
]
[project.optional-dependencies]
test = [
"pytest",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
[tool.setuptools.packages.find]
include = ["pipelines*"]