-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (27 loc) · 746 Bytes
/
Copy pathpyproject.toml
File metadata and controls
29 lines (27 loc) · 746 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
[tool.poetry]
name = "fastapiproject"
version = "0.1.0"
description = ""
authors = ["Your Name <you@example.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
asyncpg = "^0.29.0"
fastapi = {extras = ["full"], version = "^0.104.0"}
sqlalchemy = "^2.0.22"
mypy = "^1.6.1"
flake8 = "^6.1.0"
alembic = "^1.12.1"
python-dotenv = "^1.0.0"
uvicorn = "^0.23.2"
pydantic-settings = "^2.0.3"
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
pydantic = {extras = ["email"], version = "^2.5.1"}
uuid6 = "^2023.5.2"
itsdangerous = "^2.1.2"
python-multipart = "^0.0.6"
pyjwt = {extras = ["cryptography"], version = "^2.8.0"}
cryptography = "^41.0.7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"