Revision d8d24eed0ee7705afd55050af0709613fddacb96 authored by Yiheng Wang on 01 June 2022, 18:58:27 UTC, committed by GitHub on 01 June 2022, 18:58:27 UTC
* enhance download

Signed-off-by: Yiheng Wang <vennw@nvidia.com>

* [MONAI] code formatting

Signed-off-by: monai-bot <monai.miccai2019@gmail.com>

* fixes https://github.com/Project-MONAI/MONAI/issues/4432

Signed-off-by: Wenqi Li <wenqil@nvidia.com>

Co-authored-by: monai-bot <monai.miccai2019@gmail.com>
Co-authored-by: Wenqi Li <wenqil@nvidia.com>
Co-authored-by: Wenqi Li <831580+wyli@users.noreply.github.com>
1 parent 40373b2
Raw File
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