1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
[build-system]
requires = ["setuptools >= 59.0.0", "tomli", "wheel"]
[tool.isort]
force_grid_wrap = 2
include_trailing_comma = true
multi_line_output = 3
combine_as_imports = true
[tool.codespell]
skip = '.git,*.pdf,*.svg,venvs,versioneer.py,venvs'
# DNE - do not exist
ignore-words-list = 'dne'
[tool.versioneer]
# See the docstring in versioneer.py for instructions. Note that you must
# re-run 'versioneer.py setup' after changing this section, and commit the
# resulting files.
VCS = 'git'
style = 'pep440'
versionfile_source = 'datalad_container/_version.py'
versionfile_build = 'datalad_container/_version.py'
tag_prefix = ''
parentdir_prefix = ''
|