-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 1.14 KB
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
[project]
name = "ssh-clusters-manager"
version = "0.1.0"
description = ""
authors = [{ name = "garv.works@outlook.com" }]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"paramiko>=3.5.1,<4.0.0",
"cryptography==41.0.7",
"bcrypt==4.0.1",
"cffi==1.15.1",
"pycparser==2.21",
"PyYAML>=6.0"
]
[tool.poetry]
name = "ssh-clusters-manager" # your unique package name
version = "0.1.0" # the version you tagged
description = "Lightweight Python library for parallel SSH operations"
authors = ["Gaurav Yadav garv.works@outlook.com"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/goravaa/SSHManager"
repository = "https://github.com/goravaa/SSHManager"
keywords = ["ssh", "parallel", "cluster", "automation"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
packages = [
{ include = "ssh_cluster" }
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.5"
pytest-mock = "^3.14.0"