-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1021 Bytes
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 1021 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[project]
name = "sshsync"
version = "0.12.0"
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 = [
{ name = "Blackmamoth", email = "blackmamoth83@gmail.com" }
]
license = { text = "MIT" }
requires-python = ">=3.10"
dependencies = [
"asyncssh>=2.20.0",
"keyring>=25.6.0",
"pyyaml>=6.0.2",
"rich>=14.0.0",
"sshconf>=0.2.7",
"structlog>=25.3.0",
"typer>=0.15.3",
]
[project.scripts]
sshsync = "sshsync:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.urls]
Homepage = "https://github.com/Blackmamoth/sshsync"
Issues = "https://github.com/Blackmamoth/sshsync/issues"
[tool.hatch.build]
exclude = [
".git/",
".github/",
".gitignore",
".python-version",
"demo.gif",
"pyrightconfig.json",
"uv.lock",
]
[dependency-groups]
dev = [
"ruff>=0.11.13",
]