aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: cf2db54df71f8f7e7f195184305074b1aab4a8e0 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# SPDX-FileCopyrightText: Copyright 2022-2023, Arm Limited and/or its affiliates.
# SPDX-FileCopyrightText: Copyright (c) 2012-2022 Jukka Lehtosalo and contributors
# SPDX-FileCopyrightText: Copyright (c) 2015-2022 Dropbox, Inc.
# SPDX-License-Identifier: Apache-2.0 AND MIT

[build-system]
requires = [
    "setuptools>=42",
    "wheel",
    "setuptools_scm[toml]>=6.2"
]
build-backend = "setuptools.build_meta"

# Enable setuptools_scm
[tool.setuptools_scm]

[tool.pytest.ini_options]
testpaths = "tests"
markers = [
    "e2e",  # e2e tests
    "install",  # installation tests
    "command",  # command tests
    "model_gen"  # model generation tests
]
junit_logging = "all"

[tool.pylint.messages_control]
min-similarity-lines = 10
min-public-methods = 1
max-line-length = 88
max-args = 8
max-attributes = 10
# Provide basic compatibility with black
disable = [
    "wrong-import-order"
]
enable = [
    "dangerous-default-value",  # W0102
    # black will reflow code lines, but won't touch comments, error on those
    "line-too-long"  # C0301
]

[tool.pylint.similarities]
ignore-imports = true

[tool.mypy]
# Suppresses error messages about imports that cannot be resolved
ignore_missing_imports = true
# Shows a warning when encountering any code inferred to be unreachable or redundant after performing type analysis
warn_unreachable = true
# Shows errors for missing return statements on some execution paths
warn_no_return = true
# Shows a warning when returning a value with type Any from a function declared with a non- Any return type
warn_return_any = true
# Warns about unneeded # type: ignore comments
warn_unused_ignores = true
# Warns about casting an expression to its inferred type
warn_redundant_casts = true
# Disallows calling functions without type annotations from functions with type annotations
disallow_untyped_calls = true
# Disallows defining functions without type annotations or with incomplete type annotations
disallow_untyped_defs = true
# Disallows defining functions with incomplete type annotations
disallow_incomplete_defs = true
# Reports an error whenever a function with type annotations is decorated with a decorator without annotations
disallow_untyped_decorators = true
# Type-checks the interior of functions without type annotations
check_untyped_defs = true

[[tool.mypy.overrides]]
module = [
    "pkg_resources",
    "requests"
]
ignore_missing_imports = true

[tool.commitizen]
# This simply signifies that we want to customize the commitizen configuration
name = "cz_customize"
# name = "cz_conventional_commits"
tag_format = "$version"
version_scheme = "semver"
version_provider = "scm"
update_changelog_on_bump = true

[tool.commitizen.customize]
# Schema pattern is used by `cz check`, and `tox -e lint` in turn. Builtin CC pattern:
# (?s)(build|ci|docs|feat|fix|perf|refactor|style|test|chore|revert|bump)(\\(\\S+\\))?!?:( [^\\n\\r]+)((\\n\\n.*)|(\\s*))?$
# We customize this slightly by removing types that don't seem relevant now:
schema_pattern = "(?s)(build|ci|docs|feat|fix|perf|refactor|style|test)(\\(\\S+\\))?!?:( [A-Z][^\\n\\r]+)((\\n\\n.*)|(\\s*))?$"
schema = "<type>(<scope>): <Subject-capitalized>\n<BLANK LINE>\n<body>\n<BLANK LINE>\n(BREAKING CHANGE: )<footer>"
# Commit parser is used to render the commits for RELEASES.md
commit_parser = "^((?P<change_type>build|ci|docs|feat|fix|perf|refactor|style|test|BREAKING CHANGE)(?:\\((?P<scope>[^()\\r\\n]*)\\)|\\()?(?P<breaking>!)?|\\w+!):\\s(?P<message>.*)?"
# Change type map to render the title for that category as per {tag:title}
change_type_map = {'feat' = 'Feature changes', 'fix' = 'Bug fix', 'perf' = 'Performance improvements', 'build' = 'Development changes'}