-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 863 Bytes
/
pyproject.toml
File metadata and controls
32 lines (27 loc) · 863 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
[tool.poetry]
name = "domo"
version = "1.0.3"
description = "Domo is a very simple all-in-one script to manage the iot devices from the CLI."
authors = ["ZappaBoy <federico.zappone@justanother.cloud>"]
maintainers = ["ZappaBoy <federico.zappone@justanother.cloud>"]
readme = "README.md"
packages = [{ include = "domo" }]
homepage = "https://github.com/ZappaBoy/domo"
repository = "https://github.com/ZappaBoy/domo"
documentation = "https://github.com/ZappaBoy/domo/blob/main/README.md"
keywords = ["domo", "domotics"]
classifiers = [
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = "^3.11"
requests = "^2.31.0"
tinytuya = "^1.13.2"
cryptography = "^43.0.3"
[tool.poetry.group.dev.dependencies]
poetry2setup = "^1.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
domo = "domo:main"