diff options
author | Malfurious <m@lfurio.us> | 2025-03-24 02:38:50 -0400 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2025-03-24 02:38:50 -0400 |
commit | 3b871ceb9da2c69abab7bcc289d7db7aa251c52a (patch) | |
tree | 133a8c06db77a36fbc4c760f0a7c8cca172035fe | |
parent | b10340d418f2726b12700564b5322bf4f7eaa943 (diff) | |
download | nsploit-3b871ceb9da2c69abab7bcc289d7db7aa251c52a.tar.gz nsploit-3b871ceb9da2c69abab7bcc289d7db7aa251c52a.zip |
pyproject: Fix readme file definition
Since renaming the file to "README" (no file extension), the build
backend can no longer automatically determine the file content type, so
specify text/plain in pyproject.toml.
Signed-off-by: Malfurious <m@lfurio.us>
-rw-r--r-- | pyproject.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index b1c835d..957525c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "nsploit" version = "0.5.0" requires-python = ">=3.9" description = "(n)sploit is a process interaction tool with software exploitation utilities" -readme = "README" +readme = {file = "README", content-type = "text/plain"} license = {file = "UNLICENSE"} maintainers = [{email = "nsploit-devl@normalmode.org"}] |