-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (58 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
64 lines (58 loc) · 1.53 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "roborock-cloud-cli"
version = "0.4.0"
description = "OpenClaw-compatible Roborock CLI and agent skill backend"
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
authors = [{ name = "MOZARTINOS" }]
keywords = [
"openclaw",
"openclaw-skill",
"agent",
"automation",
"roborock",
"vacuum",
"smart-home",
"home-automation",
"cli",
"mqtt",
"telegram-bot",
"webrtc",
"camera",
"adb",
"rooms",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Home Automation",
]
dependencies = [
"python-roborock>=4.17.0",
"aiohttp>=3.9.0",
]
[project.optional-dependencies]
telegram = ["python-telegram-bot>=21.0"]
camera = ["aiortc>=1.9.0", "av>=12.0.0"]
all = ["python-telegram-bot>=21.0", "aiortc>=1.9.0", "av>=12.0.0"]
dev = ["pytest>=8.0", "pytest-cov>=5.0"]
[project.urls]
Homepage = "https://github.com/MOZARTINOS/openclaw-roborock-cli"
Issues = "https://github.com/MOZARTINOS/openclaw-roborock-cli/issues"
Documentation = "https://github.com/MOZARTINOS/openclaw-roborock-cli#readme"
[project.scripts]
roborock-cli = "roborock_cli.cli:main"
[tool.setuptools.packages.find]
include = ["roborock_cli*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"