diff options
| author | Theofilos Augoustis <theofilos.augoustis@tum.de> | 2025-08-27 15:39:03 +0000 |
|---|---|---|
| committer | Theofilos Augoustis <theofilos.augoustis@tum.de> | 2025-08-27 16:45:50 +0000 |
| commit | 13f9661aabe44ea4e4f147c32a344a1db128ab16 (patch) | |
| tree | cc8e23ccd2ad7fc52e2fcdb576ffd24c75651989 | |
| parent | 2a15c60712b326b541d42ac48f372f97023547e7 (diff) | |
| download | focaccia-miasm-13f9661aabe44ea4e4f147c32a344a1db128ab16.tar.gz focaccia-miasm-13f9661aabe44ea4e4f147c32a344a1db128ab16.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" + |