-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
83 lines (70 loc) · 2.08 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "neon-homeassistant-skill"
version = "0.0.22"
description = "An OVOS/Neon.AI Skill for Home Assistant, which integrates with ovos-PHAL-plugin-homeassistant."
authors = ["Mike Gray <mike@graywind.org>"]
readme = "README.md"
license = "Apache-2.0"
include = ["neon_homeassistant_skill/locale/*"]
keywords = [
"ovos",
"neon",
"home",
"assistant",
"phal",
"voice",
"interface",
"skill",
"plugin",
]
[tool.poetry.extras]
test = ["neon-minerva"]
[tool.poetry.dependencies]
python = "^3.8"
ovos-bus-client = { version = "*", allow-prereleases = true }
ovos-workshop = ">=0.0.12"
neon-minerva = { version = "~=0.2.0", allow-prereleases = true }
[tool.poetry.group.dev.dependencies]
pytest = "*"
pylint = "*"
flake8 = "*"
pydocstyle = "*"
pycodestyle = "*"
black = "*"
mypy = "*"
bandit = "*"
types-pyyaml = "*"
ovos-utils = { version = "*", allow-prereleases = true }
ovos-skills-manager = { version = "*", allow-prereleases = true }
padacioso = { version = "*", allow-prereleases = true }
adapt-parser = { git = "https://github.com/mycroftai/adapt" }
ovos-core = ">=0.0.7"
ovos-phal-plugin-homeassistant = { version = "*", allow-prereleases = true }
poethepoet = "^0.24.4"
pytest-cov = "^4.1.0"
setuptools = "^69.0.3"
toml = "^0.10.2"
mock = "^5.1.0"
[tool.ruff]
line-length = 119
[tool.black]
line-length = 119
[tool.mypy]
exclude = ["test"]
[tool.isort]
profile = "black"
[tool.semantic_release]
version_variables = ["setup.py:__version__"]
[tool.poe.tasks.test]
help = "Run the test suite"
cmd = "pytest --cov=neon_homeassistant_skill --cov-report term-missing -vv test/"
[tool.poe.tasks.format]
help = "Run code formatters"
shell = "black --line-length=119 neon_homeassistant_skill && isort --overwrite-in-place neon_homeassistant_skill"
[tool.poetry.scripts]
"neon-homeassistant-skill" = "neon_homeassistant_skill:NeonHomeAssistantSkill"
[tool.poetry.plugins."ovos.plugin.skill"]
"neon_homeassistant_skill.mikejgray" = "neon_homeassistant_skill:NeonHomeAssistantSkill"