forked from onnx/onnx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
198 lines (178 loc) · 5.94 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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
# SPDX-License-Identifier: Apache-2.0
[build-system]
requires = ["setuptools>=64", "protobuf>=3.20.2"]
build-backend = "setuptools.build_meta"
[project]
name = "onnx"
dynamic = ["version", "dependencies", "optional-dependencies"]
description = "Open Neural Network Exchange"
readme = "README.md"
authors = [
{name = "ONNX Contributors", email = "onnx-technical-discuss@lists.lfaidata.foundation"},
]
classifiers = [
"Programming Language :: Python :: 3",
]
license = {text = "Apache License v2.0"}
requires-python = ">=3.8"
[project.urls]
Homepage = "https://onnx.ai/"
Repository = "https://github.com/onnx/onnx"
[project.scripts]
backend-test-tools = "onnx.backend.test.cmd_tools:main"
check-model = "onnx.bin.checker:check_model"
check-node = "onnx.bin.checker:check_node"
[tool.setuptools.dynamic]
dependencies = {file = "requirements.txt"}
[tool.setuptools.dynamic.optional-dependencies]
reference = {file = "requirements-reference.txt"}
[tool.setuptools.packages.find]
include = ["onnx*"]
[tool.setuptools.package-data]
onnx = [
"**/*.c",
"**/*.cc",
"**/*.h",
"**/*.proto",
"**/*.pyi",
"backend/test/data/**/*",
"py.typed",
]
[tool.pytest.ini_options]
addopts = "--nbval --nbval-current-env --tb=short --color=yes"
testpaths = [
"onnx/test",
"onnx/examples",
]
[tool.mypy]
follow_imports = "silent"
strict_optional = true
warn_return_any = true
warn_no_return = true
# TODO warn_unused_ignores = true
warn_redundant_casts = true
warn_incomplete_stub = true
# TODO disallow_untyped_calls = true
check_untyped_defs = true
# Allow bare generics like np.ndarray
disallow_any_generics = false
no_implicit_optional = true
# TODO disallow_incomplete_defs = true
# TODO disallow_subclassing_any = true
warn_unused_configs = true
show_error_codes = true
show_column_numbers = true
ignore_missing_imports = true
# NOTE: Do not grow the exclude list. Edit .lintrunner.toml instead
exclude = [
'^third_party',
]
# NOTE: Avoid adding overrides unless for exceptional cases. Prefer inline ignores.
# If you must ignore error for the whole file, consider adapting the example
# `# mypy: disable-error-code="misc,arg-type,type-arg"`
# and put this comment on the top of the file.
[[tool.mypy.overrides]]
module = [
'onnx.onnx_data_pb',
'onnx.onnx_data_pb2',
'onnx.onnx_pb',
'onnx.onnx_pb2',
'onnx.onnx_ml_pb2',
'onnx.onnx_operators_pb',
'onnx.onnx_operators_ml_pb2',
]
ignore_errors = true
[tool.black]
# NOTE: Do not create an exclude list. Edit .lintrunner.toml instead
target-version = ["py38", "py39", "py310", "py311"]
[tool.isort]
# NOTE: Do not create an exclude list. Edit .lintrunner.toml instead
profile = "black"
[tool.pylint.message_control]
# This list is for vscode. Add new disables in pyproject_pylint.toml for lintrunner and CI.
# Exclude patterns should be modified in .lintrunner.toml
disable = [
"format",
"import-error",
"line-too-long",
"no-name-in-module",
"use-dict-literal", # Dict literals are sometimes preferable when creating kwargs
"useless-return",
]
[tool.ruff]
# NOTE: Do not create an exclude list. Edit .lintrunner.toml instead
target-version = "py38"
select = [
"A", # flake8-builtins
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"D", # pydocstyle
"E", # pycodestyle
"F", # Pyflakes
"G", # flake8-logging-format
"ISC", # flake8-implicit-str-concat
"N", # pep8-naming
"NPY", # modern numpy
"PL", # pylint
"RUF", # Ruff-specific rules
"SIM", # flake8-simplify
"TID252", # Relative imports
"UP", # pyupgrade
"W", # pycodestyle
"YTT", # flake8-2020
]
# NOTE: Refrain from growing the ignore list unless for exceptional cases.
# Always include a comment to explain why.
ignore = [
"D1", # D1 is for missing docstrings, which is not yet enforced.
"D205", # D205 Too strict. "1 blank line required between summary line and description"
"D400",
"D415",
"E501", # Line length controlled by black
"N803", # Argument casing
"N806", # Relax: Variable name in function should be lowercase
"N999", # Module names
"NPY002", # np.random.Generator may not be preferred in all cases
"PLR0912", # Too many branches
"PLR0913", # Too many arguments to function call
"PLR0915", # Too many statements
"RUF015", # next(iter(...)) sometimes obscures the intent when we access the 0th element of a shape
"SIM102", # We don't perfer always combining if branches
"SIM108", # We don't encourage ternary operators
"SIM114", # Don't combine if branches for debugability
"SIM116", # Don't use dict lookup to replace if-else
]
ignore-init-module-imports = true
unfixable = [
"SIM112", # Envvars should not be modified
]
[tool.ruff.flake8-builtins]
builtins-ignorelist = ["id", "input"]
[tool.ruff.flake8-tidy-imports]
# Disallow all relative imports.
ban-relative-imports = "all"
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.per-file-ignores]
# NOTE: Refrain from growing the ignore list unless for exceptional cases.
# Prefer inline ignores with `noqa: xxx`.
# Eventually this list should become empty.
"**/*_test*" = ["N802"] # Function casing
"onnx/backend/test/**" = ["PLR2004"] # Magic numbers allowed in tests
"onnx/backend/test/case/**" = ["N802"] # Function casing
"onnx/reference/ops/**" = [
"N801", # Class casing
"PLR2004", # Magic numbers
]
"onnx/reference/ops/_op_list.py" = ["F401"]
"onnx/__init__.py" = ["F401"]
"onnx/reference/__init__.py" = ["F401"]
"onnx/reference/ops/__init__.py" = ["F401"]
"onnx/reference/ops/aionnxml/_op_list.py" = ["F401"]
"onnx/reference/ops/aionnxml/__init__.py" = ["F401"]
"onnx/reference/ops/aionnx_preview_training/__init__.py" = ["F401"]
"onnx/reference/ops/aionnx_preview_training/_op_list.py" = ["F401"]
"onnx/reference/ops/experimental/__init__.py" = ["F401"]
"onnx/test/reference_evaluator_test.py"= ["C408"] # dict(...) -> { ... }
"onnx/test/**" = ["PLR2004"] # Magic numbers allowed in tests
"onnx/onnx_cpp2py_export/defs.pyi" = ["N802"]