0.4.9-b
All checks were successful
Deploy on push / deploy (push) Successful in 2m38s

This commit is contained in:
2025-02-09 22:26:50 +03:00
parent 37a9a284ef
commit 4a835bbfba
17 changed files with 1082 additions and 36 deletions

View File

@@ -26,6 +26,8 @@ fakeredis = "^2.25.1"
pydantic = "^2.9.2"
jwt = "^1.3.1"
authlib = "^1.3.2"
passlib = "^1.7.4"
bcrypt = "^4.2.1"
[tool.poetry.group.dev.dependencies]
@@ -34,13 +36,15 @@ isort = "^5.13.2"
pydantic = "^2.9.2"
pytest = "^8.3.4"
mypy = "^1.15.0"
pytest-asyncio = "^0.23.5"
pytest-cov = "^4.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pyright]
venvPath = "."
venvPath = "venv"
venv = "venv"
[tool.isort]
@@ -49,5 +53,10 @@ include_trailing_comma = true
force_grid_wrap = 0
line_length = 120
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
venv = "venv"
[tool.ruff]
line-length = 120