-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (48 loc) · 1.32 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (48 loc) · 1.32 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
[project]
name = "fastapi-modulith"
version = "0.1.0"
description = ""
authors = [
{name = "fiqri khoirul m",email = "fiqrikm18@gmail.com"}
]
requires-python = ">=3.14,<4.0"
dependencies = [
"fastapi (>=0.137.1,<0.138.0)",
"uvicorn[standard] (>=0.49.0,<0.50.0)",
"sqlalchemy[asyncio] (>=2.0.51,<3.0.0)",
"asyncpg (>=0.31.0,<0.32.0)",
"pydantic[email] (>=2.13.4,<3.0.0)",
"pydantic-settings (>=2.14.1,<3.0.0)",
"passlib[bcrypt] (>=1.7.4,<2.0.0)",
"python-jose[cryptography] (>=3.5.0,<4.0.0)",
"python-multipart (>=0.0.32,<0.0.33)",
"greenlet (>=3.5.1,<4.0.0)",
"casbin (>=1.43.0,<2.0.0)",
"fastapi-limiter (==0.1.6)",
"redis (>=8.0.0,<9.0.0)",
"jinja2 (>=3.1.6,<4.0.0)",
"boto3 (>=1.43.34,<2.0.0)",
"sendgrid (>=6.12.5,<7.0.0)",
"pyotp (>=2.10.0,<3.0.0)",
"qrcode[pil] (>=8.2,<9.0)"
]
[tool.poetry]
packages = [
{ include = "app", from = "src" }
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[dependency-groups]
dev = [
"pytest (>=9.1.0,<10.0.0)",
"httpx (>=0.28.1,<0.29.0)",
"ruff (>=0.15.17,<0.16.0)",
"mypy (>=2.1.0,<3.0.0)",
"alembic (>=1.18.4,<2.0.0)",
"httpx2 (>=2.4.0,<3.0.0)",
"pip-audit (>=2.10.1,<3.0.0)",
"import-linter (>=2.11,<3.0)"
]
[tool.ruff]
lint.ignore = ["F821"]