Skip to content

Commit 9949b1f

Browse files
Initial commit
1 parent 6f34ebd commit 9949b1f

File tree

11 files changed

+1935
-0
lines changed

11 files changed

+1935
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
dist
2+
venv
3+
.venv
4+
.idea
5+
roborock/__pycache__
6+
poetry.lock

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
TODO: Add documentation

pyproject.toml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
[tool.poetry]
2+
name = "python-roborock"
3+
version = "0.1.4"
4+
description = ""
5+
authors = ["humbertogontijo <humbertogontijo@users.noreply.github.com>"]
6+
license = "GPL-3.0-only"
7+
readme = "README.md"
8+
packages = [{include = "roborock"}]
9+
10+
[tool.poetry.scripts]
11+
roborock = "roborock.cli:main"
12+
13+
[tool.poetry.dependencies]
14+
python = "^3.8"
15+
click = ">=8"
16+
aiohttp = "*"
17+
pycryptodome = "~3.16.0"
18+
pycryptodomex = {version = "~3.16.0", markers = "sys_platform == 'darwin'"}
19+
paho-mqtt = "~1.6.1"
20+
21+
22+
[build-system]
23+
requires = ["poetry-core"]
24+
build-backend = "poetry.core.masonry.api"
25+

roborock/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
"""Roborock API."""
2+
3+
from roborock.api import RoborockClient, RoborockMqttClient
4+
from roborock.containers import *
5+
from roborock.exceptions import *
6+
from roborock.typing import *

0 commit comments

Comments
 (0)