[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"] | |