-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 1.45 KB
/
pyproject.toml
File metadata and controls
44 lines (40 loc) · 1.45 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
[project]
# Distribution name (what `pip install` refers to). Import package remains `llp`.
name = "linux-less-persistence"
version = "0.1.0"
description = "Defensive audit toolkit for low-artifact persistence signals on Linux"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE.md" }
authors = [{ name = "BackdoorAli", url = "https://github.com/BackdoorAli" }]
keywords = ["linux", "security", "audit", "persistence", "dfir", "threat-hunting", "red-team", "blue-team"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security",
"Topic :: System :: Monitoring",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/BackdoorAli/linux-less-persistence"
Repository = "https://github.com/BackdoorAli/linux-less-persistence"
Issues = "https://github.com/BackdoorAli/linux-less-persistence/issues"
[project.scripts]
llp = "llp.cli:main"
[project.optional-dependencies]
dev = [
"pytest>=8",
"ruff>=0.6",
]
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"