Files
macho-diff/pyproject.toml
dependabot[bot] 80ec1ff4f8 Bump ruff from 0.16.0 to 0.16.2
Bumps [ruff](https://github.com/astral-sh/ruff) from 0.16.0 to 0.16.2.
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](https://github.com/astral-sh/ruff/compare/0.16.0...0.16.2)

---
updated-dependencies:
- dependency-name: ruff
  dependency-version: 0.16.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-08-13 15:14:50 +00:00

27 lines
505 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.16.2",
]