-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (54 loc) · 1.84 KB
/
pyproject.toml
File metadata and controls
61 lines (54 loc) · 1.84 KB
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
[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.dev = ["pre-commit", "pytest"]
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"]
[tool.pre-commit]
hook-config = "file:.pre-commit-config.yaml"