https://github.com/Project-MONAI/MONAI/
Raw File
Tip revision: dfe8528dd718589ef4335438e31fd54e00d012d2 authored by Wenqi Li on 22 September 2021, 20:43:55 UTC
Fix cucim dep compatibility (#3006)
Tip revision: dfe8528
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