From c109de31601e90e9d95cd3e002e4a483b17c4ee7 Mon Sep 17 00:00:00 2001 From: Blackmamoth Date: Fri, 30 May 2025 01:33:13 +0530 Subject: [PATCH] added implicit inclusion of necessary files in tarball --- pyproject.toml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b6dd112..13a6287 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "sshsync" -version = "0.11.0" +version = "0.11.1" 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 = [ @@ -27,3 +27,11 @@ build-backend = "hatchling.build" [project.urls] Homepage = "https://github.com/Blackmamoth/sshsync" Issues = "https://github.com/Blackmamoth/sshsync/issues" + +[tool.hatch.build] +include = [ + "src/sshsync", + "pyproject.toml", + "README.md", + "LICENSE" +]