REMEND / pyproject.toml
udiboy1209's picture
Fix hacky ldrd instruction in ARM32
a3c7b4a
raw
history blame contribute delete
660 Bytes
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "remend"
version = "1.0"
authors = [{name="Meet Udeshi", email="[email protected]"}]
description = "Neural Decompilation for Reverse Engineering Math Equations from Binary Executables"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
requires-python = ">=3.9"
dependencies = [
"networkx",
"capstone==5.0.3",
"Levenshtein",
"tqdm",
"numpy",
"sympy",
"fairseq",
"torch",
"matplotlib",
"tokenizers"
]
[tool.hatch.build.targets.wheel]
packages = ["remend"]