Files
macho-diff/pyproject.toml
dependabot[bot] faa77a5f09 Bump pylint from 4.0.5 to 4.0.6
Bumps [pylint](https://github.com/pylint-dev/pylint) from 4.0.5 to 4.0.6.
- [Release notes](https://github.com/pylint-dev/pylint/releases)
- [Commits](https://github.com/pylint-dev/pylint/compare/v4.0.5...v4.0.6)

---
updated-dependencies:
- dependency-name: pylint
  dependency-version: 4.0.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-06-18 15:15:45 +00:00

27 lines
507 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>=0.17.6",
]
[project.scripts]
macho-diff = "macho_diff.cli:main"
[tool.setuptools]
packages = ["macho_diff"]
[dependency-groups]
dev = [
"pylint>=4.0.6",
"ruff>=0.15.16",
]