-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.17 KB
/
Copy pathpyproject.toml
File metadata and controls
43 lines (38 loc) · 1.17 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
[tool.poetry]
name = "ssht"
version = "3.0.2"
description = "SSH client wrapper for easily connecting to hosts"
authors = ["Henk Kraal <hkraal@users.noreply.github.com>"]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Topic :: System :: Shells',
'Topic :: Utilities',
]
readme = "README.md"
packages = [
{include = "ssht"}
]
[tool.poetry.scripts]
ssht = "ssht.ssht:main"
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
mysql-connector = "^2.2.9"
requests = "^2.31.0"
[tool.poetry.group.dev.dependencies]
pytest = ">=9.0.1,<9.2.0"
pytest-mock = "^3.12.0"
pytest-cov = ">=4.1,<8.0"
poetry = ">=1.8.3,<3.0.0"
pre-commit = "^4.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"