-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (75 loc) · 2.23 KB
/
pyproject.toml
File metadata and controls
83 lines (75 loc) · 2.23 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
[build-system]
requires = [
"hatchling>=1.4.1",
]
build-backend = "hatchling.build"
[tool.hatch.build]
include = [
"dotbot/frontend/*",
"*.py"
]
exclude = [
"dotbot/frontend/node_modules",
"utils/"
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.sdist.hooks.custom]
path = "utils/hooks/sdist.py"
[project]
name = "pydotbot"
version = "0.27.0"
authors = [
{ name="Alexandre Abadie", email="alexandre.abadie@inria.fr" },
{ name="Theo Akbas", email="theo.akbas@inria.fr" },
{ name="Filip Maksimovic", email="filip.maksimovic@inria.fr" },
{ name="Said Alvarado-Marin", email="said-alexander.alvarado-marin@inria.fr" },
{ name="Mališa Vučinić", email="malisa.vucinic@inria.fr" },
{ name="Diego Badillo", email="diego.badillo@sansano.usm.cl" },
]
dependencies = [
"click >= 8.1.7",
"fastapi >= 0.115.0",
"httpx >= 0.27.2",
"numpy >= 2.1.1",
"pygame >= 2.6.1",
"pynput >= 1.8.1",
"pyserial >= 3.5",
"qrkey >= 0.12.1",
"rich >= 14.0.0",
"structlog >= 24.4.0",
"uvicorn >= 0.32.0",
"websockets >= 13.1.0",
"gmqtt >= 0.7.0",
"marilib-pkg >= 0.8.0",
"pydotbot-utils >= 0.3.0",
"toml >= 0.10.2",
]
description = "Package to easily control your DotBots and SailBots."
readme = "README.md"
license = { text="BSD" }
requires-python = ">=3.7"
classifiers = [
'Programming Language :: C',
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
]
[project.urls]
"Homepage" = "https://github.com/DotBots/PyDotBot"
"Bug Tracker" = "https://github.com/DotBots/PyDotBot/issues"
[project.scripts]
dotbot-controller = "dotbot.controller_app:main"
dotbot-edge-gateway = "dotbot.edge_gateway_app:main"
dotbot-keyboard = "dotbot.keyboard:main"
dotbot-joystick = "dotbot.joystick:main"
dotbot-qrkey = "dotbot.qrkey_app:main"
[tool.ruff]
lint.select = ["E", "F"]
line-length = 88
lint.ignore = ["E501"]
[tool.isort]
multi_line_output = 3 # Use Vertical Hanging Indent
profile = "black"