-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
33 lines (28 loc) · 931 Bytes
/
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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "linksiren"
version = "0.0.2"
description = "Generation, targeted deployment, and scalable cleanup for files that coerce Windows authentication."
readme = "README.md"
authors = [{ name = "George Hamilton"}]
license = { file = "LICENSE" }
classifiers = [
"Operating System :: OS Independent",
"Topic :: Security",
"Programming Language :: Python :: 3",
]
keywords = ["coerce", "pentest", "windows", "authentication", "coercion"]
dependencies = [
"impacket>=0.11.0",
]
requires-python = ">=3.9"
[project.optional-dependencies]
dev = ["black", "bumpver", "isort", "pip-tools", "pytest", "coverage", "ruff"]
[project.urls]
Homepage = "https://github.com/gjhami/LinkSiren"
Issues = "https://github.com/gjhami/LinkSiren/issues"
[project.scripts]
linksiren = "linksiren.__main__:main"