Skip to content

Commit e87f1b1

Browse files
committed
updated pyproject.toml to *explicitly exclude unnecessary files from tarball
1 parent c109de3 commit e87f1b1

1 file changed

Lines changed: 9 additions & 6 deletions

File tree

pyproject.toml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "sshsync"
3-
version = "0.11.1"
3+
version = "0.11.2"
44
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."
55
readme = "README.md"
66
authors = [
@@ -29,9 +29,12 @@ Homepage = "https://github.com/Blackmamoth/sshsync"
2929
Issues = "https://github.com/Blackmamoth/sshsync/issues"
3030

3131
[tool.hatch.build]
32-
include = [
33-
"src/sshsync",
34-
"pyproject.toml",
35-
"README.md",
36-
"LICENSE"
32+
exclude = [
33+
".git/",
34+
".github/",
35+
".gitignore",
36+
".python-version",
37+
"demo.gif",
38+
"pyrightconfig.json",
39+
"uv.lock",
3740
]

0 commit comments

Comments
 (0)