https://github.com/Project-MONAI/MONAI/
Raw File
Tip revision: f45108b65ea1003f33df64761ede2a03fec86e42 authored by Wenqi Li on 23 April 2021, 13:40:31 UTC
RandTorchVisionD update (#2076)
Tip revision: f45108b
pyproject.toml
[build-system]
requires = [
  "wheel",
  "setuptools",
  "torch>=1.5",
  "ninja",
]

[tool.black]
line-length = 120
target-version = ['py36', 'py37', 'py38']
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
)
'''
back to top