resembl 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.
- resembl-0.0.1/PKG-INFO +24 -0
- resembl-0.0.1/README.md +5 -0
- resembl-0.0.1/pyproject.toml +26 -0
- resembl-0.0.1/resembl.egg-info/PKG-INFO +24 -0
- resembl-0.0.1/resembl.egg-info/SOURCES.txt +6 -0
- resembl-0.0.1/resembl.egg-info/dependency_links.txt +1 -0
- resembl-0.0.1/resembl.egg-info/top_level.txt +1 -0
- resembl-0.0.1/setup.cfg +4 -0
resembl-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: resembl
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Assembly Code Similarity Search — find similar assembly code snippets using MinHash LSH and fuzzy matching.
|
|
5
|
+
Author: maci0
|
|
6
|
+
License: GPLv3
|
|
7
|
+
Project-URL: homepage, https://github.com/maci0/resembl
|
|
8
|
+
Project-URL: repository, https://github.com/maci0/resembl
|
|
9
|
+
Keywords: assembly,reverse-engineering,similarity,minhash,lsh,fuzzy-matching
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Environment :: Console
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Topic :: Security
|
|
16
|
+
Classifier: Topic :: Software Development :: Disassemblers
|
|
17
|
+
Requires-Python: >=3.11
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
|
|
20
|
+
# resembl
|
|
21
|
+
|
|
22
|
+
Assembly Code Similarity Search — find similar assembly code snippets using MinHash LSH and fuzzy matching.
|
|
23
|
+
|
|
24
|
+
> This package is under active development. See the [repository](https://github.com/maci0/resembl) for the latest code.
|
resembl-0.0.1/README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "resembl"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "Assembly Code Similarity Search — find similar assembly code snippets using MinHash LSH and fuzzy matching."
|
|
5
|
+
authors = [{ name = "maci0" }]
|
|
6
|
+
license = { text = "GPLv3" }
|
|
7
|
+
readme = "README.md"
|
|
8
|
+
requires-python = ">=3.11"
|
|
9
|
+
keywords = ["assembly", "reverse-engineering", "similarity", "minhash", "lsh", "fuzzy-matching"]
|
|
10
|
+
classifiers = [
|
|
11
|
+
"Development Status :: 1 - Planning",
|
|
12
|
+
"Environment :: Console",
|
|
13
|
+
"Intended Audience :: Developers",
|
|
14
|
+
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"Topic :: Security",
|
|
17
|
+
"Topic :: Software Development :: Disassemblers",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project.urls]
|
|
21
|
+
homepage = "https://github.com/maci0/resembl"
|
|
22
|
+
repository = "https://github.com/maci0/resembl"
|
|
23
|
+
|
|
24
|
+
[build-system]
|
|
25
|
+
requires = ["setuptools>=61.0"]
|
|
26
|
+
build-backend = "setuptools.build_meta"
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: resembl
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Assembly Code Similarity Search — find similar assembly code snippets using MinHash LSH and fuzzy matching.
|
|
5
|
+
Author: maci0
|
|
6
|
+
License: GPLv3
|
|
7
|
+
Project-URL: homepage, https://github.com/maci0/resembl
|
|
8
|
+
Project-URL: repository, https://github.com/maci0/resembl
|
|
9
|
+
Keywords: assembly,reverse-engineering,similarity,minhash,lsh,fuzzy-matching
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Environment :: Console
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Topic :: Security
|
|
16
|
+
Classifier: Topic :: Software Development :: Disassemblers
|
|
17
|
+
Requires-Python: >=3.11
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
|
|
20
|
+
# resembl
|
|
21
|
+
|
|
22
|
+
Assembly Code Similarity Search — find similar assembly code snippets using MinHash LSH and fuzzy matching.
|
|
23
|
+
|
|
24
|
+
> This package is under active development. See the [repository](https://github.com/maci0/resembl) for the latest code.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
resembl-0.0.1/setup.cfg
ADDED