-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
60 lines (50 loc) · 1.35 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[tool.poetry]
name = "yaralyzer"
version = "0.9.4"
description = "Visualize and force decode YARA and regex matches found in a file or byte stream. With colors. Lots of colors."
authors = ["Michel de Cryptadamus <michel@cryptadamus.com>"]
readme = "README.md"
license = "GPL-3.0-or-later"
homepage = "https://github.com/michelcrypt4d4mus/yaralyzer"
repository = "https://github.com/michelcrypt4d4mus/yaralyzer"
documentation = "https://github.com/michelcrypt4d4mus/yaralyzer"
keywords = [
"ascii art",
"binary",
"character encoding",
"color",
"decode",
"encoding",
"malware",
"malware analysis",
"regex",
"regular expressions",
"reverse engineering",
"threat assessment",
"visualization",
"yara"
]
classifiers = [
"Topic :: Security",
"Topic :: Scientific/Engineering :: Visualization",
]
include = [
"CHANGELOG.md",
".yaralyzer.example"
]
[tool.poetry.dependencies]
python = "^3.9"
chardet = "^5.0.0"
#plyara = "^2.1.1"
python-dotenv = "^0.21.0"
rich = "^12.5.1"
rich-argparse-plus = "^0.3.1"
yara-python = "^4.3.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.3"
[tool.poetry.scripts]
yaralyze = 'yaralyzer:yaralyze'
yaralyzer_show_color_theme = 'yaralyzer.helpers.rich_text_helper:yaralyzer_show_color_theme'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"