forked from Project-MONAI/monai-deploy-app-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (38 loc) · 765 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (38 loc) · 765 Bytes
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
[build-system]
requires = [
"setuptools>=42",
"wheel",
"versioneer-518"
]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 120
target-version = ['py37', 'py38', 'py39']
include = '\.pyi?$'
exclude = '''
(
/(
# exclude a few common directories in the root of the project
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \.pytype
| _build
| buck-out
| build
| dist
| docs/source/notebooks
| notebooks
)/
# also separately exclude a file named versioneer.py and _version.py
| versioneer.py
| .+/versioneer.py
| .+/_version.py
)
'''
# https://github.com/microsoft/pyright/blob/main/docs/configuration.md
[tool.pyright]
ignore = ["versioneer.py", "_version.py"]