forked from kulgan/psqlgml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (34 loc) · 891 Bytes
/
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
[build-system]
requires = ["setuptools>=42", "wheel", "setuptools_scm[toml]>=3.4"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
local_scheme = "no-local-version"
[tool.black]
line-length = 98
include = '\.pyi?$'
[tool.coverage.run]
branch = true
context = "unit tests"
source = ["psqlgml"]
[tool.coverage.html]
title = "psqlgml coverage report"
directory = "docs/htmlcov"
show_contexts = true
[tool.isort]
profile = "black"
known_first_party = ["psqlgml"]
[tool.mypy]
pretty = true
ignore_missing_imports = true
disallow_untyped_defs = true
disallow_untyped_calls = false
strict_optional = true
no_implicit_optional = true
check_untyped_defs = true
[tool.towncrier]
package = "psqlgml"
package_dir = "src"
filename = "docs/changelog.rst"
directory = "changelog"
issue_format = "`#{issue} <https://github.com/kulgan/psqlgml/issues/{issue}>`_"
underlines = ["-", "^"]