unidecompiler-plugin-python-pyc 0.1.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.
@@ -0,0 +1,26 @@
1
+ Metadata-Version: 2.4
2
+ Name: unidecompiler-plugin-python-pyc
3
+ Version: 0.1.1
4
+ Summary: Python bytecode frontend plugin for unidecompiler
5
+ Author-email: Wker <1670133844@qq.com>
6
+ License-Expression: AGPL-3.0-or-later
7
+ Project-URL: Homepage, https://github.com/Wker666/unidecompiler
8
+ Project-URL: Repository, https://github.com/Wker666/unidecompiler
9
+ Project-URL: Issues, https://github.com/Wker666/unidecompiler/issues
10
+ Requires-Python: >=3.11
11
+ Description-Content-Type: text/markdown
12
+ Requires-Dist: unidecompiler<0.2.0,>=0.1.1
13
+
14
+ # unidecompiler-plugin-python-pyc
15
+
16
+ Frontend plugin for Python `.pyc` bytecode files. It decodes Python bytecode
17
+ and submits neutral thin IR to `unidecompiler`, where recovery and pseudocode
18
+ rendering occur.
19
+
20
+ Install with:
21
+
22
+ ```sh
23
+ python -m pip install unidecompiler-plugin-python-pyc
24
+ ```
25
+
26
+ The plugin is discovered automatically by compatible CLI and GUI hosts.
@@ -0,0 +1,13 @@
1
+ # unidecompiler-plugin-python-pyc
2
+
3
+ Frontend plugin for Python `.pyc` bytecode files. It decodes Python bytecode
4
+ and submits neutral thin IR to `unidecompiler`, where recovery and pseudocode
5
+ rendering occur.
6
+
7
+ Install with:
8
+
9
+ ```sh
10
+ python -m pip install unidecompiler-plugin-python-pyc
11
+ ```
12
+
13
+ The plugin is discovered automatically by compatible CLI and GUI hosts.
@@ -0,0 +1,24 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "unidecompiler-plugin-python-pyc"
7
+ version = "0.1.1"
8
+ description = "Python bytecode frontend plugin for unidecompiler"
9
+ readme = "README.md"
10
+ license = "AGPL-3.0-or-later"
11
+ authors = [{ name = "Wker", email = "1670133844@qq.com" }]
12
+ requires-python = ">=3.11"
13
+ dependencies = ["unidecompiler>=0.1.1,<0.2.0"]
14
+
15
+ [project.urls]
16
+ Homepage = "https://github.com/Wker666/unidecompiler"
17
+ Repository = "https://github.com/Wker666/unidecompiler"
18
+ Issues = "https://github.com/Wker666/unidecompiler/issues"
19
+
20
+ [project.entry-points."unidecompiler.frontends"]
21
+ python-pyc = "unidecompiler_plugin_python_pyc.plugin:PythonPycFrontendPlugin"
22
+
23
+ [tool.setuptools.packages.find]
24
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,2 @@
1
+ """Python .pyc frontend."""
2
+