summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pyproject.toml3
-rw-r--r--src/tiptop/__about__.py2
2 files changed, 4 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 20fbaae..f61957b 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -34,6 +34,9 @@ dependencies = [
"textual >=0.1.15, <0.2",
]
+[tool.setuptools.dynamic]
+version = {attr = "tiptop.__about__.__version__"}
+
[project.urls]
Code = "https://github.com/nschloe/tiptop"
Issues = "https://github.com/nschloe/tiptop/issues"
diff --git a/src/tiptop/__about__.py b/src/tiptop/__about__.py
index 6cd38b7..c49a95c 100644
--- a/src/tiptop/__about__.py
+++ b/src/tiptop/__about__.py
@@ -1 +1 @@
-__version__ = "0.2.7"
+__version__ = "0.2.8"