-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (51 loc) · 1.16 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[tool.poetry]
name = "news-fastapi"
version = "0.1.0"
description = ""
authors = ["Dmitry S <[email protected]>"]
readme = "README.md"
[[tool.poetry.packages]]
include = "news_fastapi"
from = "src"
[tool.poetry.dependencies]
python = "^3.11"
fastapi = {extras = ["all"], version = "^0.101.0"}
pyjwt = "^2.8.0"
tortoise-orm = {extras = ["asyncpg"], version = "^0.20.0"}
sqlalchemy = {extras = ["asyncio"], version = "^2.0.19"}
anyio = "^3.7.1"
dependency-injector = "^4.41.0"
aiormq = "^6.7.7"
httpx = "^0.24.1"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
isort = "^5.12.0"
mypy = "^1.5.0"
pylint = "^2.17.5"
wrapt = "^1.15.0"
dill = "^0.3.7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[mypy]
[tool.isort]
profile = "black"
combine_as_imports = true
[tool.pylint."MESSAGES CONTROL"]
disable = """
missing-module-docstring,
missing-class-docstring,
missing-function-docstring,
too-many-instance-attributes,
too-many-arguments,
too-few-public-methods,
duplicate-code,
"""
[tool.pylint.BASIC]
good-names = """
on
"""
[tool.pylint.MAIN]
ignore-paths = """
news_fastapi/asyncio_playground.py
"""