diff --git a/pyproject.toml b/pyproject.toml index 694a815..0be6cae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "plotbox" -version = "0.1.0" +version = "0.1.1" description = "Quick MatPlotLib base data visualizer" readme = "README.md" authors = [ @@ -20,4 +20,13 @@ plotbox = "plotbox:main" [build-system] requires = ["hatchling"] -build-backend = "hatchling.build" \ No newline at end of file +build-backend = "hatchling.build" + +[dependency-groups] +dev = [ + "ruff>=0.15.13", + "ty>=0.0.38", +] + +[tool.ty.environment] +python = "./.venv" \ No newline at end of file diff --git a/src/plotbox/__init__.py b/src/plotbox/__init__.py index 891dbd6..4aca3df 100644 --- a/src/plotbox/__init__.py +++ b/src/plotbox/__init__.py @@ -1 +1,3 @@ -from .plotbox import main \ No newline at end of file +from .plotbox import main + +__version__ = "0.1.1" \ No newline at end of file diff --git a/src/plotbox/__main__.py b/src/plotbox/__main__.py index 2cffd2d..9046f3d 100644 --- a/src/plotbox/__main__.py +++ b/src/plotbox/__main__.py @@ -1,4 +1,4 @@ -from .plotbox import main() +from .plotbox import main if __name__ == "__main__": main() \ No newline at end of file