-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (32 loc) · 1.25 KB
/
pyproject.toml
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
[tool.poetry]
name = "cmdlinker"
version = "0.1.4"
description = "用于解析命令/执行命令,将命令解析成py对象,在进行命令操作时,直接操作命令对象即可,可用于命令自动化测试,中间件测试,linux测试,云原生测试,云计算测试等"
license = "Apache-2.0"
authors = ["chineseluo <[email protected]>"]
readme = "README.md"
keywords = [
'automation', 'testing', 'test', 'automated-testing', 'cli', 'command-line', 'shell', 'ssh',
'configuration', 'yaml', 'config', 'settings', 'remote-execution', 'remote-command', 'ssh-command',
'ci-cd', 'continuous-integration', 'client', 'development-tools', 'dev-tools', 'utility',
'sysadmin', 'system-administration', 'commend', 'script-execution', 'shell-script', 'bash-script'
]
[tool.poetry.dependencies]
python = "^3.9"
jinja2 = "^3.1.4"
loguru = "^0.7.3"
pyyaml = "^6.0.2"
prettytable = "^3.12.0"
paramiko = "^3.5.0"
pyfiglet = "^1.0.2"
termcolor = "^2.5.0"
argparse = "^1.4.0"
pydantic = "^2.10.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
CL = "cmdlinker.client:entry"
cl = "cmdlinker.client:entry"
cmdlinker = "cmdlinker.client:entry"
CmdLinker = "cmdlinker.client:entry"