summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: f66269af6beb2b3b98965f24e8977103dc4fd935 (plain)
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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
    "setuptools>=47",
]

[tool.black]
line-length = 79

[tool.mypy]

exclude = [
    'alembic/template',
    'alembic.testing.*',
]
show_error_codes = true

[[tool.mypy.overrides]]
module = [
    'alembic.operations.ops',
    'alembic.op',
    'alembic.context',
    'alembic.autogenerate.api',
    'alembic.runtime.*',
]

disallow_incomplete_defs = true

[[tool.mypy.overrides]]
module = [
    'mako.*',
    'sqlalchemy.testing.*'
]
ignore_missing_imports = true