-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (31 loc) · 849 Bytes
/
pyproject.toml
File metadata and controls
33 lines (31 loc) · 849 Bytes
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
[project]
name = "webhooked"
version = "0.1.0"
description = ""
authors = [{ name = "Maahir Ur Rahman", email = "msmaahirur@gmail.com" }]
requires-python = ">=3.13,<4.0"
readme = "README.md"
dependencies = [
"fastapi[standard] (>=0.115.7,<0.116.0)",
"uvicorn (>=0.34.0,<0.35.0)",
"sqlalchemy (>=2.0.37,<3.0.0)",
"asyncpg (>=0.30.0,<0.31.0)",
"databases (>=0.9.0,<0.10.0)",
"pydantic-settings (>=2.7.1,<3.0.0)",
"psycopg2-binary (>=2.9.10,<3.0.0)",
"alembic (>=1.14.1,<2.0.0)",
"jinja2 (>=3.1.5,<4.0.0)",
"python-dotenv (>=1.0.1,<2.0.0)",
"jsonpath-ng (>=1.7.0,<2.0.0)",
"loguru (>=0.7.3,<0.8.0)",
"sse-starlette (>=2.2.1,<3.0.0)",
]
[dependency-groups]
dev = [
"black>=24.10.0,<25",
"flake8>=7.1.1,<8",
"isort>=5.13.2,<6",
"requests>=2.32.3,<3",
]
[tool.isort]
profile = "black"