You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pwndbg/pyproject.toml

242 lines
5.5 KiB
TOML

[project]
name = "pwndbg"
version = "2025.02.19"
description = "Exploit Development and Reverse Engineering with GDB Made Easy"
authors = [{ name = "Dominik 'disconnect3d' Czarnota", email = "dominik.b.czarnota+dc@gmail.com" }]
requires-python = "~=3.10"
readme = "README.md"
dependencies = [
"capstone>=5.0.3,<6",
"unicorn>=2.1.3,<3",
"pwntools>=4.14.0,<5",
"sortedcontainers>=2.4.0,<3",
"tabulate>=0.9.0,<0.10",
"typing-extensions>=4.12.0,<5",
"pycparser~=2.22",
"pyelftools>=0.29,<0.30",
"pygments>=2.18.0,<3",
# Optional? only for 'ipi' command
"ipython>=8.27.0,<9",
# Optional? only for 'ropgadget' command
"ropgadget==7.3",
# Optional? only for 'ai' commands
"requests>=2.32.3,<3",
# Optional? only for pretty print traceback
"rich>=13.7.1,<14",
# Optional? only for qemu-system vmmap
"pt",
]
[project.optional-dependencies]
lldb = [
# The LLDB REPL requires readline.
'gnureadline>=8.2.10,<9; sys_platform != "win32"',
'pyreadline3>=3.5.4,<4; sys_platform == "win32"'
]
gdb = []
[dependency-groups]
dev = [
"sortedcontainers-stubs>=2.4.2,<3",
"types-pygments>=2.17.0.20240310,<3",
"types-requests>=2.31.0.20240406,<3",
"types-tabulate>=0.9.0.20240106,<0.10",
"types-gdb>=12.1.4.20240704,<13",
]
lint = [
# Newer mypy has more types to fix. Please fix types in the future.
"mypy==1.13.0",
"isort>=5.13.2,<6",
"ruff>=0.4.1,<0.5",
"vermin>=1.6.0,<2",
]
tests = [
# Newer versions of pytest break CI on GitHub
"pytest==8.0.2",
"pytest-cov>=4.1.0,<5",
"coverage[toml]>=7.5.0,<8",
]
docs = [
"mdutils",
"mkdocs",
"mkdocs-gen-files",
"mkdocs-material",
"mkdocs-minify-plugin",
"mkdocs-rss-plugin",
"mkdocstrings",
"mkdocstrings-python",
"pymdown-extensions",
"mkdocs-api-autonav",
"griffe-modernized-annotations",
# Used by mkdocstrings to format source.
"ruff",
"mike",
]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
ignore = ["A003", "E402", "E501", "E731", "F405", "F821", "W505"]
select = [
"A", # flake8-builtins
"E", # pycodestyle
"F", # pyflakes
"W", # pycodestyle
"C4", # flake8-comprehensions
"ISC", # flake8-implicit-str-concat
"SLOT", # flake8-slots
"FLY", # flynt
"PGH", # pygrep-hooks
"RET506", # flake8-return: superfluous-else-raise
"RET507", # flake8-return: superfluous-else-continue
"RET508", # flake8-return: superfluous-else-break
# We want to enable the below lints, but they currently return too many errors
# "RET505", # flake8-return: superfluous-else-return
# "SLF" # flake8-self
# "SIM", # flake8-simplify
# "PTH", # flake8-use-pathlib
]
[tool.uv]
default-groups = []
[tool.uv.sources]
pt = { git = "https://github.com/martinradev/gdb-pt-dump", rev = "50227bda0b6332e94027f811a15879588de6d5cb" }
[tool.ruff.lint.flake8-builtins]
builtins-ignorelist = [
"all",
"bin",
"breakpoint",
"copyright",
"dir",
"exit",
"format",
"hex",
"map",
"max",
"min",
"next",
"type",
]
[tool.hatch.build.targets.sdist]
include = ["pwndbg"]
[tool.hatch.build.targets.wheel]
include = ["pwndbg"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.mypy]
strict_optional = false
check_untyped_defs = true
allow_untyped_globals = false
allow_redefinition = true
allow_any_generics = false
warn_redundant_casts = true
warn_unused_ignores = true
warn_no_return = true
# warn_return_any = true
# warn_unreachable = true
show_error_context = true
pretty = true
show_error_codes = true
incremental = false
disable_error_code = [
# https://github.com/python/mypy/issues/6232
"assignment",
]
[[tool.mypy.overrides]]
module = ["pwndbg.aglib.elf"]
disable_error_code = ["name-defined"]
[[tool.mypy.overrides]]
module = [
"pwndbg.aglib.arch",
"pwndbg.color.*",
"pwndbg.commands.context",
"pwndbg.commands.cymbol",
"pwndbg.commands.hexdump",
"pwndbg.commands.procinfo",
"pwndbg.commands.reload",
"pwndbg.commands.version",
"pwndbg.exception",
"pwndbg.aglib.dynamic",
"pwndbg.gdblib.events",
"pwndbg.gdblib.got",
"pwndbg.gdblib.ptmalloc2_tracking",
"pwndbg.aglib.heap.*",
"pwndbg.hexdump",
"pwndbg.ui",
"pwndbg.wrappers.*",
]
disable_error_code = ["attr-defined"]
[[tool.mypy.overrides]]
module = ["pwndbg.commands.telescope"]
disable_error_code = ["attr-defined", "index"]
[[tool.mypy.overrides]]
module = ["pwndbg.aglib.kernel.nftables"]
disable_error_code = ["no-redef"]
[[tool.mypy.overrides]]
module = [
"pwndbg.aglib.nearpc",
"pwndbg.aglib.typeinfo",
]
disable_error_code = ["name-defined", "attr-defined"]
[[tool.mypy.overrides]]
module = ["pwndbg.aglib.disasm.*"]
disable_error_code = ["index", "name-defined", "attr-defined"]
[[tool.mypy.overrides]]
module = [
"capstone.*",
"unicorn.*",
"pwnlib.*",
"ropgadget.*",
"elftools.*",
"ipdb.*",
"r2pipe",
"rzpipe",
"rich.*",
"pt.*",
"lldb.*",
"gnureadline",
]
ignore_missing_imports = true
[tool.isort]
profile = "black"
force_single_line = true
known_third_party = [
"capstone",
"unicorn",
"pycparser",
"gdb",
"lldb",
]
add_imports = "from __future__ import annotations"
[tool.coverage.run]
branch = true
parallel = true
disable_warnings = ["module-not-imported"]
source = ["${SRC_DIR-.}"]
omit = ["ida_script.py"]
data_file = ".cov/coverage"
[tool.coverage.report]
omit = ["ida_script.py", "tests/*"]