diff options
author | terminaldweller <devi@terminaldweller.com> | 2023-11-09 01:16:43 +0000 |
---|---|---|
committer | terminaldweller <devi@terminaldweller.com> | 2023-11-09 01:16:43 +0000 |
commit | 143898301ae86e2cca2ade4088fe63a9b7d84331 (patch) | |
tree | cd727b87a0feeab2266990276ea6d0957fc0bc09 /pyproject.toml | |
parent | added a new option --listdso, fixes #1, formatted code with black (diff) | |
download | delf-143898301ae86e2cca2ade4088fe63a9b7d84331.tar.gz delf-143898301ae86e2cca2ade4088fe63a9b7d84331.zip |
added to pypi
Diffstat (limited to '')
-rw-r--r-- | pyproject.toml | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/pyproject.toml b/pyproject.toml index 9b8f034..e71a89e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,16 +1,33 @@ [tool.poetry] name = "delf" -version = "0.1.0" -description = "" -authors = ["terminaldweller <thabogre@gmail.com>"] +version = "0.1.2" +description = "yet another elf dump tool" +authors = ["terminaldweller <devi@terminaldweller.com>"] license = "GPL-3.0" +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" |