https://github.com/Project-MONAI/MONAI/
Raw File
Tip revision: 59fb2c3cd15e0c352f06b6b28b4f2377d4478e45 authored by Holger Roth on 15 October 2022, 10:48:04 UTC
MonaiAlgo FedStats (#5240)
Tip revision: 59fb2c3
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