smallworld-re 1.0.0__tar.gz → 1.0.2__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.
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/PKG-INFO +8 -8
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/setup.py +29 -3
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/__init__.py +1 -1
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld_re.egg-info/PKG-INFO +8 -8
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld_re.egg-info/requires.txt +6 -6
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/LICENSE.txt +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/README.md +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/setup.cfg +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/analysis.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/code_coverage.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/colorizer.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/colorizer_summary.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/field_detection/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/field_detection/field_analysis.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/field_detection/guards.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/field_detection/hints.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/field_detection/malloc.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/forced_exec/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/forced_exec/forced_exec.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/underlays/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/underlays/basic.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/underlays/underlay.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/unstable/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/unstable/angr/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/unstable/angr/base.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/unstable/angr/divergence.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/unstable/angr/model.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/unstable/angr/nwbt.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/unstable/angr/typedefs.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/unstable/angr/utils.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/unstable/angr/visitor.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/unstable/angr_nwbt.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/unstable/code_coverage.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/unstable/code_reachable.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/unstable/control_flow_tracer.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/unstable/pointer_finder.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/arch/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/arch/aarch64_arch.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/arch/amd64_arch.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/arch/i386_arch.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/angr/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/angr/angr.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/angr/default.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/angr/exceptions.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/angr/exploration/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/angr/exploration/bounds.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/angr/exploration/default.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/angr/exploration/terminate.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/angr/factory.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/angr/machdefs/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/angr/machdefs/aarch64.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/angr/machdefs/amd64.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/angr/machdefs/arm.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/angr/machdefs/i386.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/angr/machdefs/machdef.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/angr/machdefs/mips.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/angr/machdefs/mips64.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/angr/machdefs/ppc.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/angr/machdefs/riscv.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/angr/machdefs/xtensa.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/angr/memory/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/angr/memory/default.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/angr/memory/fixups.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/angr/memory/memtrack.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/angr/scratch.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/angr/simos.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/angr/utils.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/emulator.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/hookable.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/panda/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/panda/machdefs/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/panda/machdefs/aarch64.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/panda/machdefs/amd64.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/panda/machdefs/arm.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/panda/machdefs/i386.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/panda/machdefs/machdef.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/panda/machdefs/mips.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/panda/machdefs/mips64.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/panda/machdefs/ppc.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/panda/panda.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/unicorn/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/unicorn/machdefs/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/unicorn/machdefs/aarch64.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/unicorn/machdefs/amd64.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/unicorn/machdefs/arm.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/unicorn/machdefs/i386.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/unicorn/machdefs/machdef.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/unicorn/machdefs/mips.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/unicorn/unicorn.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/exceptions/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/exceptions/exceptions.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/exceptions/unstable/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/exceptions/unstable/exceptions.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/extern/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/extern/ctypes.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/extern/unstable/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/extern/unstable/ghidra.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/helpers.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/hinting/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/hinting/hinting.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/hinting/hints.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/hinting/unstable/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/hinting/utils.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/instructions/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/instructions/aarch64.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/instructions/arm.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/instructions/bsid.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/instructions/instructions.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/instructions/mips.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/instructions/x86.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/logging.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/platforms.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/py.typed +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/cpus/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/cpus/aarch64.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/cpus/amd64.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/cpus/arm.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/cpus/cpu.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/cpus/i386.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/cpus/mips.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/cpus/mips64.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/cpus/powerpc.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/cpus/riscv.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/cpus/xtensa.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/memory/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/memory/code.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/memory/elf/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/memory/elf/elf.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/memory/elf/rela/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/memory/elf/rela/aarch64.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/memory/elf/rela/amd64.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/memory/elf/rela/arm.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/memory/elf/rela/i386.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/memory/elf/rela/mips.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/memory/elf/rela/ppc.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/memory/elf/rela/rela.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/memory/elf/rela/riscv64.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/memory/elf/rela/xtensa.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/memory/elf/structs.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/memory/heap.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/memory/memory.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/memory/stack/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/memory/stack/aarch64.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/memory/stack/amd64.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/memory/stack/arm.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/memory/stack/i386.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/memory/stack/mips.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/memory/stack/mips64.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/memory/stack/ppc.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/memory/stack/riscv.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/memory/stack/stack.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/memory/stack/xtensa.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/models/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/models/mmio.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/models/model.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/models/posix.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/models/x86/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/models/x86/microsoftcdecl.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/models/x86/systemv.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/state.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/unstable/__init__.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/unstable/elf.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/state/x86_registers.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/utils.py +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld_re.egg-info/SOURCES.txt +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld_re.egg-info/dependency_links.txt +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld_re.egg-info/entry_points.txt +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld_re.egg-info/not-zip-safe +0 -0
- {smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld_re.egg-info/top_level.txt +0 -0
@@ -1,20 +1,20 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: smallworld-re
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.2
|
4
4
|
Summary: An emulation stack tracking library
|
5
5
|
Home-page: https://github.com/smallworld-re/smallworld
|
6
6
|
Author: MIT Lincoln Laboratory
|
7
7
|
Author-email: smallworld@ll.mit.edu
|
8
8
|
License: MIT
|
9
|
-
Requires-Python: >=3.
|
9
|
+
Requires-Python: >=3.10
|
10
10
|
Description-Content-Type: text/markdown
|
11
11
|
License-File: LICENSE.txt
|
12
|
-
Requires-Dist:
|
13
|
-
Requires-Dist: angr
|
14
|
-
Requires-Dist: capstone
|
15
|
-
Requires-Dist: lief
|
16
|
-
Requires-Dist:
|
17
|
-
Requires-Dist:
|
12
|
+
Requires-Dist: pyhidra==1.3.0
|
13
|
+
Requires-Dist: angr==9.2.137
|
14
|
+
Requires-Dist: capstone==5.0.3
|
15
|
+
Requires-Dist: lief==0.14.1
|
16
|
+
Requires-Dist: pypcode==3.0
|
17
|
+
Requires-Dist: unicorn==2.0.1.post1
|
18
18
|
Provides-Extra: development
|
19
19
|
Requires-Dist: black; extra == "development"
|
20
20
|
Requires-Dist: isort; extra == "development"
|
@@ -3,9 +3,35 @@ from setuptools import find_packages, setup
|
|
3
3
|
with open("README.md", "r", encoding="utf-8") as f:
|
4
4
|
long_description = f.read()
|
5
5
|
|
6
|
+
# AFAIK, there is no way to load a constraints file directly.
|
7
|
+
# Hey look I just made one.
|
8
|
+
immediate_dependencies = {
|
9
|
+
"angr",
|
10
|
+
"capstone",
|
11
|
+
"lief",
|
12
|
+
"pyhidra",
|
13
|
+
"pypcode",
|
14
|
+
"unicorn",
|
15
|
+
}
|
16
|
+
# For some reason, pyhidra doesn't show up on pip-compile
|
17
|
+
install_requires = ["pyhidra==1.3.0"]
|
18
|
+
with open("constraints.txt", "r") as f:
|
19
|
+
constraints = f.read().split("\n")
|
20
|
+
for c in filter(
|
21
|
+
lambda x: not x.startswith("#"), map(lambda x: x.strip(), constraints)
|
22
|
+
):
|
23
|
+
package = c.split("=", 1)[0]
|
24
|
+
if package in immediate_dependencies:
|
25
|
+
install_requires.append(c)
|
26
|
+
|
27
|
+
if len(install_requires) != len(immediate_dependencies):
|
28
|
+
print(install_requires)
|
29
|
+
print(immediate_dependencies)
|
30
|
+
raise ValueError("Missing constraints for some packages")
|
31
|
+
|
6
32
|
setup(
|
7
33
|
name="smallworld-re",
|
8
|
-
version="1.0.
|
34
|
+
version="1.0.2",
|
9
35
|
author="MIT Lincoln Laboratory",
|
10
36
|
author_email="smallworld@ll.mit.edu",
|
11
37
|
url="https://github.com/smallworld-re/smallworld",
|
@@ -15,8 +41,8 @@ setup(
|
|
15
41
|
license="MIT",
|
16
42
|
license_files=["LICENSE.txt"],
|
17
43
|
packages=find_packages(),
|
18
|
-
python_requires=">=3.
|
19
|
-
install_requires=
|
44
|
+
python_requires=">=3.10",
|
45
|
+
install_requires=install_requires,
|
20
46
|
extras_require={
|
21
47
|
"development": [
|
22
48
|
"black",
|
@@ -1,20 +1,20 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: smallworld-re
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.2
|
4
4
|
Summary: An emulation stack tracking library
|
5
5
|
Home-page: https://github.com/smallworld-re/smallworld
|
6
6
|
Author: MIT Lincoln Laboratory
|
7
7
|
Author-email: smallworld@ll.mit.edu
|
8
8
|
License: MIT
|
9
|
-
Requires-Python: >=3.
|
9
|
+
Requires-Python: >=3.10
|
10
10
|
Description-Content-Type: text/markdown
|
11
11
|
License-File: LICENSE.txt
|
12
|
-
Requires-Dist:
|
13
|
-
Requires-Dist: angr
|
14
|
-
Requires-Dist: capstone
|
15
|
-
Requires-Dist: lief
|
16
|
-
Requires-Dist:
|
17
|
-
Requires-Dist:
|
12
|
+
Requires-Dist: pyhidra==1.3.0
|
13
|
+
Requires-Dist: angr==9.2.137
|
14
|
+
Requires-Dist: capstone==5.0.3
|
15
|
+
Requires-Dist: lief==0.14.1
|
16
|
+
Requires-Dist: pypcode==3.0
|
17
|
+
Requires-Dist: unicorn==2.0.1.post1
|
18
18
|
Provides-Extra: development
|
19
19
|
Requires-Dist: black; extra == "development"
|
20
20
|
Requires-Dist: isort; extra == "development"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/field_detection/field_analysis.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/analyses/unstable/control_flow_tracer.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/angr/exploration/__init__.py
RENAMED
File without changes
|
File without changes
|
{smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/angr/exploration/default.py
RENAMED
File without changes
|
{smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/angr/exploration/terminate.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/unicorn/machdefs/__init__.py
RENAMED
File without changes
|
{smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/unicorn/machdefs/aarch64.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{smallworld_re-1.0.0 → smallworld_re-1.0.2}/smallworld/emulators/unicorn/machdefs/machdef.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|