Files
macho-diff/pyproject.toml
dependabot[bot] b2035ff8a2 Bump lief from 0.17.6 to 1.0.0
Bumps [lief](https://github.com/lief-project/LIEF) from 0.17.6 to 1.0.0.
- [Release notes](https://github.com/lief-project/LIEF/releases)
- [Commits](https://github.com/lief-project/LIEF/compare/0.17.6...1.0.0)

---
updated-dependencies:
- dependency-name: lief
  dependency-version: 1.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-07-16 15:14:44 +00:00

27 lines
506 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "macho-diff"
version = "0.1.0"
description = "A command-line tool for visual instruction-level differences between Mach-O binaries."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"capstone>=5.0.9",
"lief>=1.0.0",
]
[project.scripts]
macho-diff = "macho_diff.cli:main"
[tool.setuptools]
packages = ["macho_diff"]
[dependency-groups]
dev = [
"pylint>=4.0.6",
"ruff>=0.15.20",
]