-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 787 Bytes
/
pyproject.toml
File metadata and controls
28 lines (25 loc) · 787 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
[project]
name = "fastapi_fundamentals"
version = "0.1.0"
description = ""
authors = [{ name = "phnglh", email = "phonghngle@gmail.com" }]
requires-python = ">=3.12"
dependencies = [
"fastapi[standard] (>=0.115.12,<0.116.0)",
"uvicorn[standard] (>=0.34.0,<0.35.0)",
"python-dotenv (>=1.1.0,<2.0.0)",
"sqlalchemy (>=2.0.40,<3.0.0)",
"aiosqlite (>=0.21.0,<0.22.0)",
"pydantic (>=2.11.4,<3.0.0)",
"sqlmodel (>=0.0.24,<0.0.25)",
"pydantic-settings (>=2.9.1,<3.0.0)",
"mysql-connector-python (>=9.3.0,<10.0.0)",
"pyjwt (>=2.10.1,<3.0.0)",
"passlib (>=1.7.4,<2.0.0)",
"bcrypt (>=4.3.0,<5.0.0)",
]
[tool.poetry]
packages = [{ include = "src" }]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"