https://github.com/Project-MONAI/MONAI/
Raw File
Tip revision: af0e0e9f757558d144b655c63afcea3a4e0a06f5 authored by Nic Ma on 13 June 2022, 15:14:10 UTC
4489 Enhance hyperlinks of config syntax doc (#4490)
Tip revision: af0e0e9
pyproject.toml
[build-system]
requires = [
  "wheel",
  "setuptools",
  "torch>=1.7",
  "ninja",
]

[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
  )/
  # also separately exclude a file named versioneer.py
  | monai/_version.py
)
'''

[tool.pycln]
all = true
exclude = "monai/bundle/__main__.py"
back to top