-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (37 loc) · 963 Bytes
/
pyproject.toml
File metadata and controls
45 lines (37 loc) · 963 Bytes
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
[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.coverage.run]
branch = true
context = "unit tests"
disable_warnings = ["module-not-measured"]
[tool.coverage.html]
title = "Pytest psqlgraph coverage report"
directory = "docs/htmlcov"
show_contexts = true
[tool.black]
line-length = 98
include = '\.pyi?$'
[tool.isort]
profile = "black"
known_first_party = ["pytest_psqlgraph"]
[tool.towncrier]
package = "pytest_psqlgraph"
package_dir = "src"
filename = "changelog.rst"
directory = "changelog"
[tool.mypy]
pretty = true
ignore_missing_imports = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
warn_redundant_casts = true
strict_optional = true
no_implicit_optional = true
check_untyped_defs = true
[tool.mypy-jsonschema]
ignore_missing_imports = true
[tool.mypy-dulwich]
ignore_missing_imports = true