summaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: b2f5a49f1004d890398c95c985cf3fac96ffc571 (plain) (blame)
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
[project]
name = "nsploit"
description = "nsploit is a process interaction automation tool with software exploitation focused utilities."
readme = "README.txt"
requires-python = ">=3.9"
license = "Unlicense"
license-files.paths = ["UNLICENSE"]
authors = [
    {name="dusoleil",email="howcansocksbereal@gmail.com"},
    {name="Malfurious",email="m@lfurio.us"},
]
dynamic = ["version"]

[project.urls]
"Homepage" = "https://github.com/dusoleil/sploit"

[project.scripts]
nsploit = "nsploit.__main__:main"

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.hatch.version]
source = "code"
path = "nsploit/__init__.py"
search-paths = ["."]
expression = "__version__"

[tool.hatch.build.hooks.custom]
path = "hooks/bake_version.py"