-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
77 lines (62 loc) · 1.71 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[tool.poetry]
name = "pdfalyzer"
version = "1.16.1"
description = "A PDF analysis toolkit. Scan a PDF with relevant YARA rules, visualize its inner tree-like data structure in living color (lots of colors), force decodes of suspicious font binaries, and more."
authors = ["Michel de Cryptadamus <michel@cryptadamus.com>"]
license = "GPL-3.0-or-later"
readme = "README.md"
homepage = "https://github.com/michelcrypt4d4mus/pdfalyzer"
repository = "https://github.com/michelcrypt4d4mus/pdfalyzer"
documentation = "https://github.com/michelcrypt4d4mus/pdfalyzer"
keywords = [
"ascii art",
"binary",
"color",
"font",
"encoding",
"malicious pdf",
"malware",
"malware analysis",
"pdf",
"threat assessment",
"visualization",
"yara"
]
classifiers = [
"Topic :: Artistic Software",
"Topic :: Security",
"Topic :: Scientific/Engineering :: Visualization",
]
include = [
"CHANGELOG.md",
"LICENSE"
#{ path = "doc" }
]
packages = [
{ include = "pdfalyzer" }
]
[tool.poetry.urls]
Changelog = "https://github.com/michelcrypt4d4mus/pdfalyzer/blob/master/CHANGELOG.md"
[tool.poetry.scripts]
combine_pdfs = 'pdfalyzer:combine_pdfs'
pdfalyze = 'pdfalyzer:pdfalyze'
pdfalyzer_show_color_theme = 'pdfalyzer:pdfalyzer_show_color_theme'
[tool.poetry.dependencies]
python = "^3.9"
anytree = "~=2.8"
chardet = ">=5.0.0,<6.0.0"
pypdf = "^5.0.1"
python-dotenv = "^0.21.0"
rich = "^12.5.1"
rich-argparse-plus = "^0.3.1"
yaralyzer = "^0.9.4"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.2"
pytest-skip-slow = "^0.0.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]