https://github.com/Project-MONAI/MONAI/
Raw File
Tip revision: 8d362c146a2bc6ebb52484ef5451d160236919ad authored by Nic Ma on 21 January 2022, 09:28:58 UTC
3686 Skip workflow run if data is empty or the specified epoch_length is 0 (#3690)
Tip revision: 8d362c1
pyproject.toml
[build-system]
requires = [
  "wheel",
  "setuptools",
  "torch>=1.6",
  "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