From e87f1b154d2038206689045d5126a096fb3b82c1 Mon Sep 17 00:00:00 2001 From: Blackmamoth Date: Fri, 30 May 2025 12:59:18 +0530 Subject: [PATCH] updated pyproject.toml to *explicitly exclude unnecessary files from tarball --- pyproject.toml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 13a6287..9267ff8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "sshsync" -version = "0.11.1" +version = "0.11.2" description = "sshsync is a CLI tool to run shell commands across multiple servers via SSH, either on specific groups or all servers. It also supports pushing and pulling files to and from remote hosts." readme = "README.md" authors = [ @@ -29,9 +29,12 @@ Homepage = "https://github.com/Blackmamoth/sshsync" Issues = "https://github.com/Blackmamoth/sshsync/issues" [tool.hatch.build] -include = [ - "src/sshsync", - "pyproject.toml", - "README.md", - "LICENSE" +exclude = [ + ".git/", + ".github/", + ".gitignore", + ".python-version", + "demo.gif", + "pyrightconfig.json", + "uv.lock", ]