-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 1.24 KB
/
Copy pathpyproject.toml
File metadata and controls
39 lines (36 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "municipal-finance-ai"
version = "0.1.0"
description = "Local-first AI workflow tool for small municipal finance departments."
requires-python = ">=3.11"
# Abstract direct dependencies (source of truth for what this project requires).
# For a fully reproducible install with exact pinned transitive versions, use:
# pip install -r requirements.txt
# That file was generated via `pip freeze` from the known-good Python 3.14 venv.
dependencies = [
"pandas",
"pydantic>=2",
"openpyxl",
"streamlit",
"pytest",
"fastapi",
"uvicorn",
"httpx",
"python-multipart",
]
[tool.setuptools]
packages = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
addopts = "-q --basetemp=.pytest_tmp"
# Narrowly silence the one known StarletteDeprecationWarning emitted at import
# of fastapi.testclient (httpx vs httpx2). StarletteDeprecationWarning subclasses
# UserWarning, so it is matched by its exact message + the UserWarning base
# category + the emitting module - no other warning is suppressed.
filterwarnings = [
"ignore:Using `httpx` with `starlette.testclient` is deprecated:UserWarning:fastapi.testclient",
]