-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
91 lines (80 loc) · 1.95 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[tool.poetry]
name = "app"
version = "0"
description = ""
authors = [
"Artur Shiriev <[email protected]>",
"List Family Team <[email protected]>"
]
license = "MIT License"
packages = [
{from = "src", include = "app"}
]
[tool.poetry.dependencies]
python = "3.12.*"
fastapi = ">=0.76"
pydantic-settings = "*"
granian = "*"
#that-depends = "*"
# database
alembic = "*"
psycopg2 = "*"
sqlalchemy = "*"
asyncpg = "*"
[tool.poetry.group.dev.dependencies]
polyfactory = "*"
httpx = "*"
pytest = "*"
pytest-cov = "*"
pytest-asyncio = "*"
ruff = "*"
mypy = "*"
asyncpg-stubs = "*"
aiosqlite = "*"
pytest-postgresql = "^6.1.1"
sqlalchemy-utils = "^0.41.2"
pytest-mock = "^3.14.0"
[tool.ruff]
fix = true
unsafe-fixes = true
line-length = 120
target-version = "py311"
extend-exclude = ["bin"]
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"D1", # allow missing docstrings
"FBT", # allow boolean args
"ANN101", # missing-type-self
"ANN102", # missing-type-cls
"INP", # ignore flake8-no-pep420
"B008", # function-call-in-default-argument
"ANN204", # no typings for __init__
"RUF001", # allow cyrillic letters
"D203", # "one-blank-line-before-class" conflicting with D211
"D213", # "multi-line-summary-second-line" conflicting with D212
"COM812", # flake8-commas "Trailing comma missing"
"ISC001", # flake8-implicit-str-concat
]
isort.lines-after-imports = 2
isort.no-lines-before = ["standard-library", "local-folder"]
[tool.ruff.lint.extend-per-file-ignores]
"tests/*.py" = [
"S101", # allow asserts
]
[tool.mypy]
python_version = "3.12"
strict = true
pretty = true
[tool.pytest.ini_options]
addopts = "-vv -rA --cov=. --cov-report term-missing"
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"
[tool.coverage.report]
exclude_also = [
"if typing.TYPE_CHECKING:",
]
[tool.coverage.run]
concurrency = ["thread","greenlet"]
source = ["src"]
omit = ["tests/*","migrations/*",".venv/*", "tests_migrations_script_py_mako"]