Updating poetry config

This commit is contained in:
Mose Mueller
2023-04-10 16:59:59 +02:00
parent 0ca8374278
commit 7ceeab227d
3 changed files with 633 additions and 0 deletions

View File

@@ -9,6 +9,41 @@ packages = [{include = "icon_service_base"}]
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
loguru = "^0.7.0"
pydantic = "^1.10.7"
kombu = "^5.2.4"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
mypy = "^1.1.1"
isort = "^5.12.0"
flake8 = "^5.0.4"
flake8-use-fstring = "^1.4"
flake8-functions = "^0.0.7"
flake8-comprehensions = "^3.11.1"
flake8-pep585 = "^0.1.7"
flake8-pep604 = "^0.1.0"
flake8-eradicate = "^1.4.0"
[tool.black]
line-length = 88
exclude = '''
/(
\.git
| \.mypy_cache
| \.tox
| venv
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
[build-system]