summaryrefslogblamecommitdiffstats
path: root/pyproject.toml
blob: 5ac11e89614f28f709a53c984d592615d3a2e40b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11

               

                                                                                                             
                         





                                                          
                     




                                                 
                               



                                 








                               
[project]
name = "sploit"
description = "sploit 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]
sploit = "sploit.__main__:main"

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

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

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