Skip to content
Snippets Groups Projects
Commit 166dec99 authored by Matthew K Defenderfer's avatar Matthew K Defenderfer
Browse files

Add __version__ file with automatic version bumping

parent f9708260
No related branches found
No related tags found
1 merge request!50Add __version__ file with automatic version bumping
......@@ -64,6 +64,11 @@ pattern = "default-unprefixed"
format-jinja = "{% if distance == 0 %}{{ base }}{% else %}{{ base }}+{{ distance }}.{{ commit }}{% endif %}"
style = "semver"
[tool.poetry-dynamic-versioning.substitution]
folders = [
{ path = "src" }
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0","poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
......
from .__version__ import __version__, __version_tuple__
\ No newline at end of file
__version__ = "0.0.0"
__version_tuple__ = (0,0,0)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment