feat: убраны неиспользуемые пакеты

This commit is contained in:
Artem Tsyrulnikov
2025-12-23 14:49:31 +03:00
parent c6d3c78e0c
commit 69179c64be
2 changed files with 4 additions and 143 deletions

View File

@@ -17,7 +17,6 @@ dependencies = [
"pydantic-settings>=2.11.0",
"pyjwt>=2.10.1",
"python-multipart>=0.0.20",
"sqlalchemy[asyncio]>=2.0.38",
"tortoise-orm>=0.25.1",
"tortoise-orm-stubs>=1.0.2",
"uvicorn>=0.38.0",
@@ -25,7 +24,6 @@ dependencies = [
[dependency-groups]
dev = [
"alembic>=1.17.1",
"mypy>=1.18.2",
"pytest>=8.4.2",
"pytest-asyncio>=1.2.0",
@@ -41,10 +39,10 @@ line-length = 120
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"E", # pycodestyle errors
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
@@ -59,7 +57,6 @@ quote-style = "single"
strict = true
plugins = [
"pydantic.mypy",
"sqlalchemy.ext.mypy.plugin"
]
exclude = [
"tests/conftest.py"