bump project deps

This commit is contained in:
Jakub Miazek
2022-11-12 18:22:10 +01:00
parent 2e8fbb5ab8
commit 5c76702bc8
2 changed files with 186 additions and 457 deletions

View File

@@ -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"