forked from ergrelet/themida-unmutate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (34 loc) · 943 Bytes
/
pyproject.toml
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
35
36
37
38
39
40
41
42
43
[tool.poetry]
name = "themida-unmutate"
version = "0.2.1"
description = "Static deobfuscator for Themida's mutation-based obfuscation."
authors = ["ergrelet <[email protected]>"]
license = "GPL-3.0-or-later"
readme = "README.md"
packages = [{include = "themida_unmutate"}]
[tool.poetry.dependencies]
python = "^3.11"
lief = "^0.15.1"
miasm = "^0.1.5"
[tool.poetry.group.dev.dependencies]
yapf = "^0.40.2"
mypy = "^1.8.0"
pylint = "^3.0.3"
[tool.poetry.scripts]
themida-unmutate = 'themida_unmutate.main:entry_point'
[tool.yapf]
column_limit = 120
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
no_implicit_optional = true
ignore_missing_imports = true
[tool.pylint.'MESSAGES CONTROL']
max-line-length = 120
disable = "C0114, C0115, C0116, I1101"
[tool.pylint.TYPECHECK]
ignored-classes = "lief"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"