-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (47 loc) · 1 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (47 loc) · 1 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
50
51
52
53
[project]
name = "voucherbot"
version = "0.1.0"
description = "VoucherBot foundation"
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi==0.139.2",
"uvicorn[standard]==0.51.0",
"sqlalchemy[asyncio]==2.0.51",
"asyncpg==0.31.0",
"pydantic-settings==2.14.2",
"structlog==26.1.0",
"httpx==0.28.1",
"asyncpraw==8.0.2",
"tenacity==9.1.4",
"alembic==1.18.5",
"feedparser==6.0.12",
"beautifulsoup4==4.15.0",
"lxml==6.1.1",
"google-genai==2.12.1",
"resend==2.34.0",
"groq==1.5.0",
]
[project.optional-dependencies]
dev = [
"pytest==9.1.1",
"pytest-asyncio==1.4.0",
"ruff==0.15.22",
"mypy==2.3.0",
]
[tool.ruff]
line-length = 88
target-version = "py311"
[tool.mypy]
python_version = "3.11"
strict = true
[[tool.mypy.overrides]]
module = "feedparser.*"
ignore_missing_imports = true
[tool.setuptools.packages.find]
include = ["voucherbot*"]
[dependency-groups]
dev = [
"lxml-stubs>=0.5.1",
]