forked from alibaba/TinyNeuralNetwork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (34 loc) · 937 Bytes
/
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
[build-system]
requires = ["setuptools>=40.8.0", "wheel", "pip"]
build-backend = "setuptools.build_meta:__legacy__"
[tool.isort]
profile = "black"
[tool.pylint.messages_control]
disable = "C0330, C0326"
[tool.pylint.format]
max-line-length = "120"
[tool.black]
line-length = 120
experimental-string-processing = true
target-version = ['py36', 'py37', 'py38', 'py39']
include = '\.pyi?$'
skip-string-normalization = true
extend-exclude = '''
^/.git
| ^/docs
| ^/examples/qat/out/
| ^/examples/tracer/out
| ^/examples/mixed_qat/mobilenet_mixed_qat\.py
| ^/examples/models
| ^/models
| ^/myenv
| ^/tests/models/
| ^/tests/out/
| ^/build/
| ^/debugging/
| ^/tinynn/converter/operators/tflite/generated_ops\.py
| ^/tinynn/converter/schemas/tflite//schema_generated\.py
| ^/tinynn/converter/schemas/torch/aten_schema\.py
| ^/tinynn/converter/schemas/torch/quantized_schema\.py
| ^/tinynn/converter/schemas/torch/torchvision_schema\.py
'''