diff --git a/pyproject.toml b/pyproject.toml index 0be6cae..d071b82 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "plotbox" -version = "0.1.1" +version = "0.1.2" description = "Quick MatPlotLib base data visualizer" readme = "README.md" authors = [ diff --git a/src/plotbox/__init__.py b/src/plotbox/__init__.py index 4aca3df..88db042 100644 --- a/src/plotbox/__init__.py +++ b/src/plotbox/__init__.py @@ -1,3 +1 @@ -from .plotbox import main - -__version__ = "0.1.1" \ No newline at end of file +from .plotbox import main, __version__ \ No newline at end of file diff --git a/src/plotbox/plotbox.py b/src/plotbox/plotbox.py index 93c6889..2aa1a40 100644 --- a/src/plotbox/plotbox.py +++ b/src/plotbox/plotbox.py @@ -1,6 +1,8 @@ # Quick Plotter # Cal Wing Nov 2025 +__version__ = "0.1.2" + import os, shutil, time, sys from pathlib import Path