Skip to content

Commit f5b996a

Browse files
committed
✨ add dynamic versioning based on git tags
1 parent 2feca7a commit f5b996a

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
authors = [{ name = "Alberto Santos Delgado", email = "[email protected]" },
33
{ name = "Henry Webel", email = "[email protected]"}]
44
name = "vuecore"
5-
version = "0.0.1"
5+
dynamic = ["version"]
66
description = "A Python package for plotting related to multimodal molecular data. Works with acore."
77
license = { text = "GNU General Public License v3" }
88
readme = "README.md"

src/vuecore/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from importlib import metadata
2+
3+
__version__ = metadata.version("vuecore")

0 commit comments

Comments
 (0)