-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
58 lines (51 loc) · 1.75 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [ "setuptools" ]
[project]
name = "rat-king-parser"
description = "A robust, multiprocessing-capable, multi-family RAT config parser/config extractor for AsyncRAT, DcRAT, VenomRAT, QuasarRAT, XWorm, Xeno RAT, and cloned/derivative RAT families."
readme = "README.md"
keywords = [
"asyncrat",
"dcrat",
"malware",
"parser",
"quasarrat",
"venomrat",
"xenorat",
"xworm",
]
license = { file = "LICENSE" }
maintainers = [
{ name = "jeFF0Falltrades", email = "8444166+jeFF0Falltrades@users.noreply.github.com" },
]
authors = [
{ name = "jeFF0Falltrades", email = "8444166+jeFF0Falltrades@users.noreply.github.com" },
]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dynamic = [ "version" ]
dependencies = [ "dnfile", "pycryptodomex", "yara-python" ]
optional-dependencies.maco = [ "maco", "validators" ]
urls."Bug Reports" = "https://github.com/jeFF0Falltrades/rat_king_parser/issues"
urls."Homepage" = "https://github.com/jeFF0Falltrades/rat_king_parser"
urls."Say Thanks!" = "https://www.buymeacoffee.com/jeff0falltrades"
scripts.rat-king-parser = "rat_king_parser:main"
[tool.setuptools.dynamic]
version = { attr = "rat_king_parser._version.__version__" }
[tool.setuptools.packages.find]
where = [ "src" ]
include = [ "rat_king_parser*" ]
namespaces = false
[tool.setuptools.package-data]
"rat_king_parser.yara_utils" = [ "*.yar", "*.yarc" ]
[tool.ruff]
lint.extend-select = [ "I" ]