-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (45 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
49 lines (45 loc) · 1.13 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
40
41
42
43
44
45
46
47
48
49
[project]
name = "yuhheardem"
version = "1.0.0"
description = "Parliamentary Search API - Barbados Hansard Knowledge Graph"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastapi>=0.109.0",
"uvicorn[standard]>=0.30.0",
"psycopg[binary,pool]>=3.2.0",
"google-genai>=0.8.0",
"pydantic>=2.5.0",
"pydantic-settings>=2.1.0",
"python-dotenv>=1.0.0",
"rapidfuzz>=3.6.0",
"tenacity>=8.2.0",
"yt-dlp>=2024.0.0",
"requests>=2.31.0",
"beautifulsoup4>=4.12.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"ruff>=0.15.0",
"mypy>=1.19.0",
"slowapi>=0.1.9",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 100
target-version = "py313"
exclude = [".git", ".venv", "venv", "__pycache__", "*.pyc", ".pytest_cache", "htmlcov"]
[tool.mypy]
python_version = "3.13"
warn_return_any = true
disallow_untyped_defs = false
ignore_missing_imports = true
explicit_package_bases = true
warn_redundant_casts = true
warn_unused_ignores = false
check_untyped_defs = true
strict_optional = true