aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: e02e0fca7e6e24cd87aeafca4054f2d476c4ba6f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[tool.poetry]
name = "delf"
version = "0.1.3"
description = "yet another elf dump tool"
authors = ["terminaldweller <devi@terminaldweller.com>"]
license = "GPL-3.0"
readme = "README.md"
keywords = ["elf", "capstone"]
classifiers = [
    "Environment :: Console",
]
include = [
    "LICENSE",
]

[tool.poetry.dependencies]
python = "^3.8"
capstone = "^4.0.2"

[tool.poetry.scripts]
delf = "delf:main"

[tool.poetry.dev-dependencies]

[tool.poetry.group.dev.dependencies]
mypy = "^1.6.1"
pylint = "^3.0.2"
bandit = "^1.7.5"
ruff = "^0.1.1"
black = "^23.10.0"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"