-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (42 loc) · 1 KB
/
pyproject.toml
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
[tool.poetry]
name = "auth-server"
version = "0.1.0"
description = ""
authors = ["theandrunique <[email protected]>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "^0.110.2"
uvicorn = {extras = ["standart"], version = "^0.29.0"}
pydantic-settings = "^2.2.1"
motor = "^3.4.0"
pyyaml = "^6.0.1"
pyjwt = {extras = ["crypto"], version = "^2.8.0"}
sqlalchemy = "^2.0.29"
pydantic = {extras = ["email"], version = "^2.7.0"}
bcrypt = "^4.1.2"
redis = "^5.0.3"
jinja2 = "^3.1.3"
orjson = "^3.10.3"
fastapi-mail = {extras = ["httpx"], version = "^1.4.1"}
jwcrypto = "^1.5.6"
python-multipart = "^0.0.9"
punq = "^0.7.0"
beanie = "^1.26.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
pytest-asyncio = "^0.23.6"
ruff = "^0.4.1"
pyright = "^1.1.362"
faker = "^26.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pyright]
include = ["src"]
exclude = [
"**/__pycache__",
]
pythonVersion = "3.12"
pythonPlatform = "Linux"