-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 886 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 886 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
34
35
36
37
38
[tool.poetry]
name = "auraz"
version = "0.1.0"
description = "Auraz API"
authors = ["Auraz Development <auraz.mkt+dev@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "^0.109.0"
uvicorn = "^0.26.0"
sqids = "^0.4.1"
aiohttp = { extras = ["speedups"], version = "^3.9.1" }
pydantic-settings = "^2.1.0"
async-lru = "^2.0.4"
regex = "^2023.12.25"
python-multipart = "^0.0.6"
python-jose = { extras = ["criptography"], version = "^3.3.0" }
passlib = { extras = ["argon2"], version = "^1.7.4" }
sqlalchemy = "^2.0.25"
[tool.poetry.group.dev.dependencies]
mypy = "^1.7.0"
types-regex = "^2023.10.3.0"
types-passlib = "^1.7.7.13"
types-python-jose = "^3.3.4.8"
ruff = "^0.1.8"
ruff-lsp = "^0.0.48"
[tool.mypy]
plugins = "pydantic.mypy"
[tool.ruff]
line-length = 120
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"