-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
167 lines (148 loc) · 5.03 KB
/
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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
# Copyright DB InfraGO AG and contributors
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright DB InfraGO AG
# SPDX-License-Identifier: Apache-2.0
[build-system]
requires = ["setuptools>=64", "setuptools_scm[toml]>=3.4", "wheel"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "capella-addons"
description = "Tools to develop Capella addons"
readme = "README.md"
requires-python = ">=3.11, <3.13"
license = { text = "Apache-2.0" }
authors = [{ name = "DB InfraGO AG" }]
keywords = ["capella", "mbse", "model-based systems engineering", "addon"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Other/Nonlisted Topic",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = [
"click",
"lxml"
]
[project.urls]
Homepage = "https://github.com/DSD-DBS/capella-addons"
# Documentation = ""
[tool.docformatter]
wrap-descriptions = 72
wrap-summaries = 79
[tool.isort]
profile = 'black'
line_length = 79
[tool.mypy]
check_untyped_defs = true
no_implicit_optional = true
show_error_codes = true
warn_redundant_casts = true
warn_unreachable = true
warn_unused_ignores = true
python_version = "3.12"
[[tool.mypy.overrides]]
module = ["tests.*"]
disallow_incomplete_defs = false
disallow_untyped_defs = false
[[tool.mypy.overrides]]
# Untyped third party libraries
module = [
"lxml.*",
]
ignore_missing_imports = true
[tool.pytest.ini_options]
addopts = """
--import-mode=importlib
--strict-config
--strict-markers
--tb=short
"""
testpaths = ["tests"]
xfail_strict = true
[tool.ruff]
line-length = 79
[tool.ruff.lint]
extend-select = [
"ARG", # flake8-unused-arguments
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"C90", # mccabe
"D", # pydocstyle
"D212", # "Multi-line docstring summary should start at the first line"
"D402", # "First line should not be the function’s 'signature'"
"D417", # "Missing argument descriptions in the docstring"
"DTZ", # flake8-datetimez
"ERA", # eradicate
"FA", # flake8-future-annotations
"FBT", # flake8-boolean-trap
"FIX", # flake8-fixme
"FURB", # refurb
"G", # flake8-logging-format
"ICN", # flake8-import-conventions
"ISC001", # "Implicitly concatenated string literals on one line"
"ISC003", # "Explicitly concatenated string should be implicitly concatenated"
"LOG", # flake8-logging
"PIE", # flake8-pie
"PL", # pylint
"PT", # flake8-pytest-style
"RET", # flake8-return
"RUF", # ruff
"SIM", # flake8-simplify
"TCH005", # "Found empty type-checking block"
"T1", # flake8-debugger
"UP", # pyupgrade
"YTT", # flake8-2020
]
extend-ignore = [
"D1", # Missing docstring in _
"D201", # No blank lines allowed before function docstring # auto-formatting
"D202", # No blank lines allowed after function docstring # auto-formatting
"D203", # 1 blank line required before class docstring # auto-formatting
"D204", # 1 blank line required after class docstring # auto-formatting
"D211", # No blank lines allowed before class docstring # auto-formatting
"D213", # Multi-line docstring summary should start at the second line
"DTZ001", # `tzinfo=None` passed to `datetime.datetime()`
"DTZ005", # `tz=None` passed to `datetime.datetime.now()`
"E402", # Module level import not at top of file
"F403", # `from _ import *` used; unable to detect undefined names
"F405", # `_` may be undefined, or defined from star imports
"PLC0414", # Import alias does not rename original package # used for explicit reexports
"PLR0904", # Too many public methods
"PLR0911", # Too many return statements
"PLR0912", # Too many branches
"PLR0913", # Too many arguments in function definition
"PLR0914", # Too many local variables
"PLR0915", # Too many statements
"PLR0916", # Too many Boolean expressions
"PLR0917", # Too many positional arguments
"SIM108", # Use ternary operator instead of `if`-`else`-block
]
[tool.ruff.lint.extend-per-file-ignores]
"__init__.py" = [
"PLE0604", # Invalid object in `__all__`, must contain only strings # false-positive when unpacking imported submodule __all__
]
"tests/test_*.py" = [
"F811", # Redefinition of unused `_` from line _
"PLR2004", # Magic value used in comparison, consider replacing `_` with a constant variable
]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
ignore-decorators = ["typing.overload"]
[tool.ruff.lint.mccabe]
max-complexity = 14
[tool.setuptools]
platforms = ["any"]
zip-safe = false
[tool.setuptools.packages.find]
include = ["capella_addons", "capella_addons.*"]
[tool.setuptools_scm]
# This section must exist for setuptools_scm to work