mirror of
https://github.com/grillazz/fastapi-sqlalchemy-asyncpg.git
synced 2026-01-17 11:40:39 +03:00
bump project deps
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
[tool.poetry]
|
||||
name = "fastapi-sqlalchemy-asyncpg"
|
||||
version = "0.0.1"
|
||||
version = "0.0.2"
|
||||
description = ""
|
||||
authors = ["Jakub Miazek <the@grillazz.com>"]
|
||||
packages = []
|
||||
@@ -19,18 +19,29 @@ uvloop = "*"
|
||||
httptools = "*"
|
||||
rich = "*"
|
||||
devtools = {extras = ["pygments"], version = "*"}
|
||||
isort = "*"
|
||||
mypy = "*"
|
||||
flake8 = "*"
|
||||
black = "*"
|
||||
safety = "*"
|
||||
autoflake = "*"
|
||||
pyupgrade = "*"
|
||||
ipython = "*"
|
||||
pylint = "*"
|
||||
pytest-cov = "*"
|
||||
pytest-asyncio = "*"
|
||||
ruff = "*"
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core>=1.0.0"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
|
||||
[tool.ruff]
|
||||
line-length = 120
|
||||
|
||||
select = ["E", "F", "U", "N", "C", "B"]
|
||||
ignore = []
|
||||
# Exclude a variety of commonly ignored directories.
|
||||
exclude = [
|
||||
"alembic",
|
||||
]
|
||||
# Assume Python 3.10.
|
||||
target-version = "py310"
|
||||
|
||||
[tool.ruff.flake8-quotes]
|
||||
docstring-quotes = "double"
|
||||
Reference in New Issue
Block a user