23 lines
401 B
TOML
23 lines
401 B
TOML
[project]
|
|
name = "ds-testing-pipelines"
|
|
version = "0.1.0"
|
|
description = "Data science pipeline tools and legislative dashboard."
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"fastapi",
|
|
"uvicorn[standard]",
|
|
"jinja2",
|
|
"sqlalchemy",
|
|
"psycopg",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
test = [
|
|
"httpx",
|
|
"pytest",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
pythonpath = ["."]
|