-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
177 lines (151 loc) · 3.11 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
[project]
name = "webbits"
[tool.poetry]
name = "webbits"
version = "0.1.4"
homepage = "https://github.com/sfermigier/webbits"
description = "Top-level package for Webbits."
authors = ["Abilian SAS <sf@abilian.com>"]
readme = "README.md"
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
packages = [
{ include = "webbits", from = "src" },
{ include = "tests", format = "sdist" },
]
[tool.poetry.dependencies]
python = "^3.10"
defusedxml = ">=0.7.1"
markupsafe = ">=2"
[tool.poetry.group.dev.dependencies]
## Standard cruft
abilian-devtools = "*"
# Cruft (project templates management)
cruft = "*"
toml = "*"
## /standard cruft
freezegun = "^1.2.2"
docformatter = "^1.6.0"
bandit = "^1.7.5"
flask = "^2.3.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
# ---
[tool.isort]
profile = "black"
# ---
# pyproject.toml
[tool.pytest.ini_options]
filterwarnings = [
# 'ignore:.*contextfunction.*:DeprecationWarning',
# 'ignore:.*Unmanaged.*:sqlalchemy.exc.SAWarning'
]
addopts = "--tb=short"
testpaths = [
"tests",
"src",
]
# ---
[tool.ruff]
select = [
"F",
"E",
"C90",
"I",
"UP",
"N",
"YTT",
"B",
"A",
"C4",
"ICN",
"Q",
"S",
"BLE",
"RET",
"SIM",
"TID",
"RUF",
"PLC", "PLE", "PLR", "PLW",
]
# Add later: "ANN", "ERA"...
ignore = [
"S101", # Use of `assert` detected
"I001", # Import block is un-sorted or un-formatted (WHY!?)
"PLR2004", # Magic number
"A002", # Shadowing a built-in
]
# ---
[tool.bandit]
skips = [
"B404", # blacklist
"B603", # subprocess_without_shell_equals_true
]
# ---
[tool.pyright]
exclude = [
'.tox',
'.nox',
'tests',
'sandbox',
'doc',
'scripts',
'tmp',
]
include = ["src"]
# pyright has issues with modules imported from a root __init__.py
reportPrivateImportUsage = false
# Temp
reportGeneralTypeIssues = false
reportMissingImports = false
reportOptionalSubscript = false
# ---
[tool.pyanalyze]
paths = ["src/"]
import_paths = ["."]
# Additional checks
bare_ignore = true
missing_f = true
use_fstrings = true
value_always_true = true
# TODO: fix issues and activate
#unused_ignore = true
#enforce_no_unused = true
#incompatible_override = true
#missing_parameter_annotation = true
#missing_return_annotation = true
#suggested_parameter_type = true
#suggested_return_type = true
#use_fstrings = true
#value_always_true = true
# TODO: fix issues and remove
attribute_is_never_set = false
duplicate_dict_key = false
import_failed = false
impossible_pattern = false
incompatible_argument = false
incompatible_call = false
incompatible_return_value = false
internal_error = false
missing_return = false
possibly_undefined_name = false
undefined_attribute = false
unused_variable = false
# ---
[tool.deptry]
ignore_obsolete = [
]
ignore_missing = [
]
ignore_transitive = [
]
exclude = [
'.tox', 'tests', 'sandbox', 'doc', 'scripts',
]