-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (45 loc) · 1.16 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (45 loc) · 1.16 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
54
[project]
name = "webhook-gateway"
version = "0.1.0"
description = "A robust webhook gateway to ingest, validate, and dispatch webhooks from various sources."
authors = [{ name = "Your Name", email = "you@example.com" }]
requires-python = ">=3.13"
dependencies = [
"fastapi",
"uvicorn[standard]",
"pydantic",
"asyncpg", # Async PostgreSQL driver
"alembic", # For database migrations
"python-multipart", # For handling form data
"lxml", # For handling XML
"pydantic-settings", # For managing settings
"httpx",
"aiosqlite>=0.21.0",
"requests>=2.32.4",
"chardet>=5.2.0",
"sqlalchemy[asyncio]>=2.0.41",
"prometheus_client>=0.20.0",
"taskiq[reload]>=0.11.18",
"taskiq-aio-pika>=0.4.3",
"ulid-rs-py>=0.3.1",
"typer>=0.17.3",
]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["app*"]
[tool.ruff]
line-length = 88
[tool.black]
line-length = 88
[dependency-groups]
dev = [
"black>=25.1.0",
"ipython>=8.37.0",
"pytest>=8.4.1",
"pytest-asyncio>=1.2.0",
"pytest-cov>=6.2.1",
"ruff>=0.12.0",
]