-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (71 loc) · 2.11 KB
/
pyproject.toml
File metadata and controls
83 lines (71 loc) · 2.11 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "skill-mac-application-launcher"
dynamic = ["version"]
description = "Launch Mac desktop applications by voice"
readme = "README.md"
license = "Apache-2.0"
authors = [
{name = "OscillateLabsLLC", email = "mike@oscillatelabs.net"}
]
keywords = ["ovos", "neon", "skill", "plugin", "macos", "application", "launcher"]
classifiers = [
"Intended Audience :: Developers",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Topic :: Multimedia",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.9"
dependencies = [
"padacioso>=0.1.1",
"psutil",
"ovos-bus-client>=1.3.4",
"ovos-workshop>=3.1.2",
"ovos-utils>=0.8.1",
"ovos-plugin-manager~=0.9.0",
]
[project.urls]
Homepage = "https://github.com/OscillateLabsLLC/skill-mac-application-launcher"
Repository = "https://github.com/OscillateLabsLLC/skill-mac-application-launcher"
"Bug Tracker" = "https://github.com/OscillateLabsLLC/skill-mac-application-launcher/issues"
[project.entry-points."ovos.plugin.skill"]
"skill-mac-application-launcher.oscillatelabsllc" = "skill_mac_application_launcher:MacApplicationLauncherSkill"
[tool.hatch.version]
source = "code"
path = "skill_mac_application_launcher/version.py"
[tool.hatch.build.targets.wheel]
packages = ["skill_mac_application_launcher"]
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-ra -q --cov=skill_mac_application_launcher --cov-report=term-missing --cov-report=html"
testpaths = ["tests"]
[tool.coverage.run]
omit = ["skill_mac_application_launcher/version.py"]
[tool.ruff]
line-length = 119
target-version = "py311"
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # pyflakes
"I", # isort
]
[tool.ruff.lint.isort]
lines-after-imports = 2
combine-as-imports = true
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
[dependency-groups]
dev = [
"build>=1.2.2.post1",
"mypy>=1.16.0",
"pytest>=8.4.0",
"pytest-cov>=6.1.1",
"ruff>=0.11.13",
]