diff options
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 36 |
1 files changed, 10 insertions, 26 deletions
diff --git a/pyproject.toml b/pyproject.toml index 5ac11e8..f6f29b3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,31 +1,15 @@ -[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__" +[project] +name = "nsploit" +version = "0.4.0" +requires-python = ">=3.9" +description = "(n)sploit is a process interaction tool with software exploitation utilities" +readme = "README.txt" +license = {file = "UNLICENSE"} +maintainers = [{email = "nsploit-devl@normalmode.org"}] -[tool.hatch.build.hooks.custom] -path = "hooks/bake_version.py" +[project.scripts] +nsploit = "nsploit.__main__:main" |