We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6646987 commit 3d56b18Copy full SHA for 3d56b18
pyproject.toml
@@ -8,7 +8,8 @@ authors = ["MoNA group"]
8
license = "MIT"
9
readme = "README.md"
10
repository = "https://github.com/Multiomics-Analytics-Group/vuegen"
11
-version = "0.1.0"
+# just a placeholder for dynamic versions, see https://pypi.org/project/poetry-dynamic-versioning/
12
+version = "0.0.0"
13
14
[tool.poetry.dependencies]
15
python = ">=3.9,<3.9.7 || >3.9.7,<4.0"
src/vuegen/__init__.py
@@ -3,4 +3,6 @@
3
and Streamlit web applications. Users simply provide a directory with output files
4
and VueGen compiles them into a structured report."""
5
6
-__version__ = "1.0.0"
+from importlib import metadata
7
+
+__version__ = metadata.version("vuegen")
0 commit comments