diff options
| -rw-r--r-- | pyproject.toml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..196a4fbc --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,16 @@ +[project] +name = "miasm" +version = "0.1.4" +requires-python = "==3.12.*" +description = "Reverse engineering framework in Python" +readme = {file = "README.md", content-type = "text/markdown"} +dependencies = [ + "future", + "pyparsing", + "setuptools", +] + +[build-system] +requires = ["setuptools", "wheel"] +build-backend = "setuptools.build_meta" + |