-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (57 loc) · 1.6 KB
/
pyproject.toml
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
[tool.poetry]
name = "skill-roon"
version = "0.0.1"
description = "mycroft/ovos roon skill plugin"
authors = ["Ramblurr <[email protected]>"]
license = "AGPL-3.0-or-later"
keywords = ["ovos", "skill", "plugin"]
packages = [
{ include = "roon_skill" },
{ include = "roon_proxy" },
{ include = "rpc" }
]
[tool.poetry.dependencies]
python = "^3.11"
roonapi = "0.1.4"
fuzzywuzzy = "0.18.0"
asyncio = "3.4.3"
msgspec = "0.18.1"
pyzmq = "25.1.1"
#ovos-utils = "0.0.35"
#ovos-workshop = "0.0.12"
adapt-parser = "1.0.0"
ovos-plugin-common-play = {version = "~=0.0.6a5", allow-prereleases = true}
ovos-utils = {version = "*", allow-prereleases = true}
ovos-bus-client = {version = "*", allow-prereleases = true}
ovos-workshop = {version = "~=0.0.12a27", allow-prereleases = true}
ovos-core = {version = "*", allow-prereleases = true}
[tool.poetry.dev-dependencies]
flake8-docstrings = ">=1.3.0"
flake8 = ">=3.6.0"
flake8-quotes = ">=3.2.0"
pyright = ">=1.1.323"
pydocstyle = ">=3.0.0"
pylint = ">=2.4.3"
pytest = ">=5.2.1"
black = ">=22.12"
[tool.poetry.group.dev.dependencies]
isort = "^5.12.0"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
[tool.poetry.plugins."ovos.plugin.skill"]
"skill-roon.ramblurr" = "roon_skill:RoonSkill"
[tool.poetry.scripts]
"roon-skill" = "roon_skill.launcher:main"
#"roon-skill" = "skill_roon:RoonSkill"
"roon-proxy-server" = "roon_proxy.roon_proxy_server:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pyright]
include = ["roon_skill", "roon_proxy", "rpc"]
exclude = ["archive/**",
"**/__pycache__"
]
venv = ".venv"