diff options
| author | Theofilos Augoustis <theofilos.augoustis@tum.de> | 2025-08-27 15:39:03 +0000 |
|---|---|---|
| committer | Christian Krinitsin <mail@krinitsin.com> | 2025-08-28 23:55:18 +0200 |
| commit | 42c9d90f348df993330e56cfcde9e47d658900f0 (patch) | |
| tree | 33b97b80d801c139d2ed525b8d3913718ea7a1f6 | |
| parent | 307ce085f3ba7c7597e5bf0c5de65f06c1c10676 (diff) | |
| download | miasm-42c9d90f348df993330e56cfcde9e47d658900f0.tar.gz miasm-42c9d90f348df993330e56cfcde9e47d658900f0.zip | |
Add pyproject.toml
| -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" + |