-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
176 lines (158 loc) · 4.05 KB
/
pyproject.toml
File metadata and controls
176 lines (158 loc) · 4.05 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
[project]
name = "robotframework-jsonrpcremote"
version = "0.1.0"
description = "A client implementation for Robot Framework JSON-RPC remote protocol."
readme = "README.md"
authors = [{ name = "Daniel Biehl", email = "dbiehl@live.de" }]
license = { file = "LICENSE" }
requires-python = ">=3.10"
keywords = [
"Test",
"Testing",
"RobotFramework",
"Keyword Driven",
"Robotic Process Automation",
"RPA",
"JSON-RPC",
"JSON-RPC Remote",
"Robot Framework Remote",
"Remote Library",
"Remote Keywords",
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance",
"Typing :: Typed",
"Intended Audience :: Developers",
"Framework :: Robot Framework",
"Framework :: Robot Framework :: Library",
]
dependencies = [
"robotframework>=7.0",
"jsonrpcpeer",
]
[project.urls]
Homepage = "https://github.com/imbus/robotframework-jsonrpcremote"
Repository = "https://github.com/imbus/robotframework-jsonrpcremote"
Issues = "https://github.com/imbus/robotframework-jsonrpcremote/issues"
Documentation = "https://github.com/imbus/robotframework-jsonrpcremote#readme"
[project.optional-dependencies]
server = ["robotframework-jsonrpcremote-server"]
[build-system]
requires = ["uv_build>=0.9.17,<0.10.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "JsonRpcRemote"
[tool.uv.workspace]
members = ["packages/*", "examples/*"]
[tool.uv.sources]
jsonrpcpeer = { workspace = true }
robotframework-jsonrpcremote-protocol = { workspace = true }
robotframework-jsonrpcremote-server = { workspace = true }
simple-robot-jsonrpcserver = { workspace = true }
[dependency-groups]
dev = [
"mypy>=1.19.1",
"robotcode[runner]>=2.1.0",
"robotframework-robocop>=7.0.0",
"robotremoteserver>=1.1.1",
"ruff>=0.14.9",
"simple-robot-jsonrpcserver",
]
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
ignore = ["E741", "N805", "N999", "RUF012", "RUF006", "ISC001"]
select = [
"E",
"F",
"W",
"I",
"N",
#"UP",
"YTT",
#"ANN",
#"BLE",
#"B",
#"A"
#"COM"
# "C4", # TODO enable this
"DTZ",
"T10",
# "EM",
"ISC",
"G",
#"INP",
"PIE",
# "T20",
"PT",
"Q",
"RET",
# "SIM", # TODO enable this
# "TID",
# "TCH",
# "ARG",
# "PTH", # TODO enable this
# "SLF", # TODO enable this
# "ERA", # TODO enable this
"RSE",
# "PL",
#"TRY",
"RUF",
# "TID"
]
[tool.ruff.lint.per-file-ignores]
#"__init__.py" = ["F401"]
[tool.ruff.lint.isort]
detect-same-package = true
known-first-party = ["jsonrpcpeer", "robot_jsonrpcremote_protocol", "robot_jsonrpcremote_server"]
[tool.ruff.lint.flake8-pytest-style]
fixture-parentheses = false
mark-parentheses = false
[tool.mypy]
python_version = "3.10"
strict = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true
warn_unused_configs = true
warn_unreachable = true
implicit_reexport = false
implicit_optional = true
disallow_untyped_decorators = false
disallow_untyped_calls = false
disallow_subclassing_any = false
explicit_package_bases = true
namespace_packages = true
exclude = [
'^\.mypy_cache/',
'^\.venv/',
'^\.hatch/',
"^build/",
"^dist/",
"^out/",
"^playground/",
"^scripts/",
]
mypy_path = [
"typings",
"src",
"packages/jsonrpcpeer/src",
"packages/protocol/src",
"packages/server/src",
"examples/simple_robot_jsonrpcserver/src",
]
[[tool.mypy.overrides]]
module = ["robot.*", "robotremoteserver.*", "debugpy.*", "robocop.*", "pluggy"]
ignore_missing_imports = true
no_implicit_reexport = false