Skip to content

Commit

Permalink
Merge pull request #256 from yarikoptic/rf-versioneer
Browse files Browse the repository at this point in the history
Move versioneer configuration from setup.cfg to pyproject.toml
  • Loading branch information
yarikoptic authored Jan 17, 2024
2 parents c4c2945 + 6e560d7 commit f468228
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
13 changes: 12 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools >= 43.0.0", "wheel"]
requires = ["setuptools >= 43.0.0", "tomli", "wheel"]

[tool.isort]
force_grid_wrap = 2
Expand All @@ -10,3 +10,14 @@ multi_line_output = 3
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 = ''
11 changes: 0 additions & 11 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -48,17 +48,6 @@ datalad.extensions =
datalad.metadata.extractors =
container_inspect = datalad_container.extractors.metalad_container:MetaladContainerInspect

[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 =

[coverage:report]
show_missing = True
omit =
Expand Down

0 comments on commit f468228

Please sign in to comment.