-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
182 lines (161 loc) · 5.08 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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
[build-system]
requires = ["setuptools>=64", "setuptools_scm[toml]>=3.4", "wheel"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "eclipse-plugin-builders"
description = "Tools to build Eclipse plugins without the Eclipse IDE frontend"
readme = "README.md"
requires-python = ">=3, <3.13"
license = { text = "Apache-2.0" }
authors = [
{ name = "Jamil RAICHOUNI" },
]
keywords = []
classifiers = [
"Development Status :: 1 - Planning",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"click",
]
[project.urls]
Homepage = "https://github.com/DSD-DBS/eclipse-plugin-builders"
Documentation = "https://dsd-dbs.github.io/eclipse-plugin-builders"
[project.optional-dependencies]
docs = [
"furo",
"sphinx",
"sphinx-copybutton",
"tomli; python_version<'3.11'",
]
test = [
"pytest",
"pytest-cov",
]
[tool.coverage.run]
branch = true
command_line = "-m pytest"
source = ["eclipse_plugin_builders"]
[tool.coverage.report]
exclude_also = [
'if t\.TYPE_CHECKING:',
'class .*\bt\.Protocol\):',
'@abc\.abstractmethod',
'@t\.overload',
]
skip_covered = true
[tool.docformatter]
wrap-descriptions = 72
wrap-summaries = 79
[tool.isort]
profile = 'black'
line_length = 79
[tool.mypy]
check_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_optional = true
show_error_codes = true
warn_redundant_casts = true
warn_unreachable = true
python_version = "3.12"
[[tool.mypy.overrides]]
# Untyped third party libraries
module = [
# ...
]
ignore_missing_imports = true
[tool.pytest.ini_options]
addopts = """
--import-mode=importlib
--strict-config
--strict-markers
"""
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.package-data]
"*" = ["py.typed"]
[tool.setuptools.packages.find]
include = ["eclipse_plugin_builders", "eclipse_plugin_builders.*"]
[tool.setuptools_scm]
# This section must exist for setuptools_scm to work
local_scheme = "no-local-version"