Update plotbox to use new makegraph

This commit is contained in:
2026-05-20 14:15:21 +10:00
parent 605a356fe8
commit 3359591269
3 changed files with 15 additions and 4 deletions
+11 -2
View File
@@ -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"
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"ruff>=0.15.13",
"ty>=0.0.38",
]
[tool.ty.environment]
python = "./.venv"
+3 -1
View File
@@ -1 +1,3 @@
from .plotbox import main
from .plotbox import main
__version__ = "0.1.1"
+1 -1
View File
@@ -1,4 +1,4 @@
from .plotbox import main()
from .plotbox import main
if __name__ == "__main__":
main()