forked from rpiRobotics/abb_robot_client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1018 Bytes
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1018 Bytes
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
[project]
name = "abb-robot-client"
version = "0.5.1"
description = "Python client library to access ABB robots using RWS and EGM"
readme = "README.md"
authors = [
{ name = "John Wason", email = "john.wason@example.com" },
{ name = "MESH AG", email = "koh@mesh.ch" }
]
dependencies = [
"loguru>=0.7.3",
"numpy",
"protobuf>=6.32.1",
"pydantic>=2.11.7",
"requests>=2.32.5",
"websocket-client>=1.8.0",
]
license = {file = "LICENSE.txt"}
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=8.4.2",
"textual>=6.1.0",
]
[project.urls]
homepage = "https://github.com/johnwason/abb_robot_client"
repository = "https://github.com/johnwason/abb_robot_client"
documentation = "https://github.com/johnwason/abb_robot_client#documentation"
[project.optional-dependencies]
aio = ["httpx", "websockets"]
[tool.pytest.ini_options]
testpaths = [
"tests"
]
# Linting and Formatting
[tool.ruff]
line-length = 120