plotui 0.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
plotui-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: plotui
3
+ Version: 0.0.1
4
+ Summary: Interactive 2D/3D plots in the terminal - Plotly-style, for Textual, powered by a Rust core and the Kitty graphics protocol. (Name reservation placeholder - real release coming soon.)
5
+ Project-URL: Repository, https://github.com/sebaheg/plotui
6
+ Author-email: Sebastian Haglund <sebastian@rebase.energy>
7
+ License: MIT
8
+ Keywords: 3d,kitty,plot,terminal,textual,tui,visualization
9
+ Requires-Python: >=3.9
10
+ Description-Content-Type: text/markdown
11
+
12
+ # plotui
13
+
14
+ Interactive 2D/3D plots in the terminal — Plotly-style, for Textual, powered by a Rust core and the Kitty graphics protocol.
15
+
16
+ **This is a placeholder release to reserve the package name. The real release is under active development at [github.com/sebaheg/plotui](https://github.com/sebaheg/plotui).**
plotui-0.0.1/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # plotui
2
+
3
+ Interactive 2D/3D plots in the terminal — Plotly-style, for Textual, powered by a Rust core and the Kitty graphics protocol.
4
+
5
+ **This is a placeholder release to reserve the package name. The real release is under active development at [github.com/sebaheg/plotui](https://github.com/sebaheg/plotui).**
@@ -0,0 +1,19 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "plotui"
7
+ version = "0.0.1"
8
+ description = "Interactive 2D/3D plots in the terminal - Plotly-style, for Textual, powered by a Rust core and the Kitty graphics protocol. (Name reservation placeholder - real release coming soon.)"
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ license = { text = "MIT" }
12
+ authors = [{ name = "Sebastian Haglund", email = "sebastian@rebase.energy" }]
13
+ keywords = ["terminal", "plot", "3d", "textual", "kitty", "tui", "visualization"]
14
+
15
+ [project.urls]
16
+ Repository = "https://github.com/sebaheg/plotui"
17
+
18
+ [tool.hatch.build.targets.wheel]
19
+ packages = ["src/plotui"]
@@ -0,0 +1,6 @@
1
+ """plotui — placeholder release reserving the package name.
2
+
3
+ The real package is under development at https://github.com/sebaheg/plotui.
4
+ """
5
+
6
+ __version__ = "0.0.1"