diff options
author | Malfurious <m@lfurio.us> | 2025-01-04 23:57:16 -0500 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2025-01-04 23:57:16 -0500 |
commit | 23c750d2edc712c4a37e0774049a1a0f9a966009 (patch) | |
tree | e16b9f6495776dccc2c8e39d29b66d28d94b3448 /pyproject.toml | |
parent | 640726aa11369d328c1cdfe00b4344b6a925729c (diff) | |
parent | 831fd7402cd357a79b76007471722a243ec60c8d (diff) | |
download | nsploit-23c750d2edc712c4a37e0774049a1a0f9a966009.tar.gz nsploit-23c750d2edc712c4a37e0774049a1a0f9a966009.zip |
Merge branch 'nsploit'
Rename fork to nsploit and touch up project files. We switch from
automatically obtaining version via git-describe to a static definition
in pyproject.toml, to support more install use-cases.
* nsploit:
Update pyproject file for nsploit
Don't rely on git for version information
main: Update ASCII banner for nsploit
Rename sploit package to nsploit
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" |