From b6e3c733fd2ae6960b12dded45a065fa3311c4db Mon Sep 17 00:00:00 2001 From: Ethan Date: Thu, 28 Dec 2023 22:59:30 +0900 Subject: [PATCH] Permute pyproject project name to permit pypi pacification --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9597f4bd..c0bd2395 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [project] -name = "splat" +name = "splat64" # Should be synced with src/splat/__init__.py version = "0.21.0" description = "A binary splitting tool to assist with decompilation and modding projects" @@ -24,5 +24,8 @@ build-backend = "hatchling.build" [tool.hatch.metadata.hooks.requirements_txt] files = ["requirements.txt"] +[tool.hatch.build.targets.wheel] +packages = ["src/splat"] + [project.scripts] splat = "splat.__main__:splat_main"