-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (30 loc) · 889 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
[build-system]
requires = ["setuptools ~= 63.4", "wheel ~= 0.37", "pbr ~= 5.9"]
build-backend = "pbr.build"
[tool.black]
line-length = 120
target-version = ["py310"]
[tool.coverage.run]
omit = ["tests/*", "setup.py"]
[tool.mypy]
python_version = "3.10"
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_calls = false
disallow_untyped_defs = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = false
warn_return_any = true
[[tool.mypy.overrides]]
module = "tests.*"
disallow_untyped_defs = false
disallow_untyped_calls = false
warn_return_any = false
[tool.semantic_release]
branch = "main"
version_pattern = "setup.cfg:version = {version}"
version_variable = "pytest_flask_ligand/__init__.py:__version__"
commit_parser = "semantic_release.history.emoji_parser"
use_textual_changelog_sections = true