-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (61 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
72 lines (61 loc) · 1.61 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "iotlabsshcli"
dynamic = ["version"]
description = "IoT-LAB testbed ssh command-line client"
readme = "README.rst"
license = {text = "CeCILL v2.1"}
authors = [
{name = "IoT-LAB Team", email = "admin@iot-lab.info"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Intended Audience :: End Users/Desktop",
"Environment :: Console",
"Topic :: Utilities",
]
requires-python = ">=3.10"
dependencies = [
"iotlabcli>=3.0.0",
"parallel-ssh>=2.16.0",
"scp>=0.15.0",
"gevent>=26.5.0",
"psutil>=7.2.2",
]
[project.urls]
Homepage = "http://www.iot-lab.info"
"Source Code" = "http://github.com/iot-lab/ssh-cli-tools/"
[project.scripts]
iotlab-ssh = "iotlabsshcli.parser.open_linux_parser:main"
open-a8-cli = "iotlabsshcli._deprecated:open_a8_cli"
[tool.hatch.version]
path = "iotlabsshcli/__init__.py"
[tool.pytest.ini_options]
addopts = [
"-v",
"--doctest-modules",
"--cov", "iotlabsshcli",
"--cov-report=term-missing",
"--cov-report=term",
"--cov-report=xml",
]
testpaths = ["iotlabsshcli"]
[tool.pylint.messages_control]
disable = ["unspecified-encoding"]
[tool.pylint.format]
msg-template = "{path}:{line}: [{msg_id}({symbol}), {obj}] {msg}"
[tool.pylint.reports]
reports = false
[tool.ruff]
line-length = 99
target-version = "py310"
exclude = [".tox", "dist", "build", "*.egg"]
[tool.ruff.lint]
select = ["E", "F", "W"]
[tool.isort]
profile = "black"
known_first_party = ["iotlabsshcli"]