-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (57 loc) · 1.81 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (57 loc) · 1.81 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
[project]
name = "ctmodbus"
version = "0.6.0"
description = "A highly flexible Modbus tool made for penetration testers"
authors = [{ name = "Justin Searle", email = "justin@controlthings.io" }]
requires-python = ">=3.8,<4"
readme = "README.md"
license = "LGPL-3.0-or-later"
keywords = ["Modbus", "test", "ICS", "control", "ControlThings"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Manufacturing",
"Intended Audience :: Other Audience",
"Intended Audience :: Science/Research",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Topic :: Utilities",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"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",
]
dependencies = [
"ctui>=0.8.0,<0.9",
"pyserial>=3.5,<4",
"pymodbus>=2.4.0,<3",
"tabulate>=0.8.9,<0.9",
"psutil>=5.8.0,<6",
]
[project.urls]
Homepage = "https://www.controlthings.io"
Repository = "https://github.com/ControlThings-io/ctmodbus"
[project.scripts]
ctmodbus = "ctmodbus.commands:main"
[dependency-groups]
dev = ["pylint", "black", "isort"]
[build-system]
requires = ["uv_build>=0.12.3,<0.13.0"]
build-backend = "uv_build"
[tool.pylint.messages_control]
disable = "C0330, C0326"
[tool.pylint.format]
max-line-length = "88"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 88