File: pyproject.toml

package info (click to toggle)
python-django-postgres-extra 2.0.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,096 kB
  • sloc: python: 9,057; makefile: 17; sh: 7; sql: 1
file content (27 lines) | stat: -rw-r--r-- 398 bytes parent folder | download
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
[tool.black]
line-length = 80
exclude = '''
(
  /(
    | .env
    | env
    | venv
    | tests/snapshots
  )/
)
'''

[tool.mypy]
python_version = "3.8"
plugins = ["mypy_django_plugin.main"]
mypy_path = ["stubs", "."]
exclude = "(env|build|dist|migrations)"

[[tool.mypy.overrides]]
module = [
    "psycopg.*"
]
ignore_missing_imports = true

[tool.django-stubs]
django_settings_module = "settings"