unidecompiler-gui 0.1.0__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.
@@ -0,0 +1,36 @@
1
+ Metadata-Version: 2.4
2
+ Name: unidecompiler-gui
3
+ Version: 0.1.0
4
+ Summary: Read-only desktop workbench for unidecompiler
5
+ Requires-Python: >=3.11
6
+ Description-Content-Type: text/markdown
7
+ Requires-Dist: unidecompiler<0.2.0,>=0.1.0
8
+ Requires-Dist: PySide6>=6.6
9
+ Provides-Extra: all-formats
10
+ Requires-Dist: unidecompiler-plugin-python-pyc<0.2.0,>=0.1.0; extra == "all-formats"
11
+ Requires-Dist: unidecompiler-plugin-jvm-class<0.2.0,>=0.1.0; extra == "all-formats"
12
+ Requires-Dist: unidecompiler-plugin-lua<0.2.0,>=0.1.0; extra == "all-formats"
13
+ Requires-Dist: unidecompiler-plugin-dotnet-cli<0.2.0,>=0.1.0; extra == "all-formats"
14
+ Requires-Dist: unidecompiler-plugin-wasm<0.2.0,>=0.1.0; extra == "all-formats"
15
+
16
+ # unidecompiler-gui
17
+
18
+ `unidecompiler-gui` is a read-only PySide6 workbench for the public
19
+ `unidecompiler.DecompilerEngine` API. It accepts one artifact, a directory, or
20
+ a ZIP/JAR archive and shows pseudocode, AST, bytecode, and diagnostics together.
21
+
22
+ Install the base GUI with its Qt dependency:
23
+
24
+ ```sh
25
+ python -m pip install unidecompiler-gui
26
+ ```
27
+
28
+ Install all separately published frontend plugins when needed:
29
+
30
+ ```sh
31
+ python -m pip install 'unidecompiler-gui[all-formats]'
32
+ ```
33
+
34
+ The GUI never imports frontend plugin packages directly. It discovers installed
35
+ plugins through `DecompilerEngine` and does not modify input artifacts or save
36
+ workspace state.
@@ -0,0 +1,21 @@
1
+ # unidecompiler-gui
2
+
3
+ `unidecompiler-gui` is a read-only PySide6 workbench for the public
4
+ `unidecompiler.DecompilerEngine` API. It accepts one artifact, a directory, or
5
+ a ZIP/JAR archive and shows pseudocode, AST, bytecode, and diagnostics together.
6
+
7
+ Install the base GUI with its Qt dependency:
8
+
9
+ ```sh
10
+ python -m pip install unidecompiler-gui
11
+ ```
12
+
13
+ Install all separately published frontend plugins when needed:
14
+
15
+ ```sh
16
+ python -m pip install 'unidecompiler-gui[all-formats]'
17
+ ```
18
+
19
+ The GUI never imports frontend plugin packages directly. It discovers installed
20
+ plugins through `DecompilerEngine` and does not modify input artifacts or save
21
+ workspace state.
@@ -0,0 +1,29 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "unidecompiler-gui"
7
+ version = "0.1.0"
8
+ description = "Read-only desktop workbench for unidecompiler"
9
+ readme = "README.md"
10
+ requires-python = ">=3.11"
11
+ dependencies = ["unidecompiler>=0.1.0,<0.2.0", "PySide6>=6.6"]
12
+
13
+ [project.optional-dependencies]
14
+ all-formats = [
15
+ "unidecompiler-plugin-python-pyc>=0.1.0,<0.2.0",
16
+ "unidecompiler-plugin-jvm-class>=0.1.0,<0.2.0",
17
+ "unidecompiler-plugin-lua>=0.1.0,<0.2.0",
18
+ "unidecompiler-plugin-dotnet-cli>=0.1.0,<0.2.0",
19
+ "unidecompiler-plugin-wasm>=0.1.0,<0.2.0",
20
+ ]
21
+
22
+ [project.scripts]
23
+ unidecompiler-gui = "unidecompiler_gui.app:main"
24
+
25
+ [tool.setuptools.packages.find]
26
+ where = ["src"]
27
+
28
+ [tool.setuptools.package-data]
29
+ unidecompiler_gui = ["themes/*.qss"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,3 @@
1
+ """Desktop host for the public :mod:`unidecompiler` engine API."""
2
+
3
+ __version__ = "0.1.0"