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

[tool.black]
line-length = 79

[tool.mypy]

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

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