-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (40 loc) · 1.27 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ovos-phal-plugin-mac"
readme = "README.md"
authors = [{ name = "Mike Gray", email = "mike@oscillatelabs.net" }]
license = { text = "Apache-2.0" }
keywords = ["ovos", "plugin", "voice", "assistant"]
requires-python = ">=3.9"
dynamic = ["version", "dependencies", "optional-dependencies", "description"]
[project.urls]
Homepage = "https://github.com/OscillateLabsLLC/ovos-phal-plugin-mac"
Repository = "https://github.com/OscillateLabsLLC/ovos-phal-plugin-mac"
[tool.setuptools]
package-dir = { "ovos_phal_plugin_mac" = "phal_plugin_mac" }
packages = ["ovos_phal_plugin_mac"]
include-package-data = true
[tool.setuptools.dynamic]
dependencies = { file = ["requirements/requirements.txt"] }
optional-dependencies = { test = { file = [
"requirements/requirements-dev.txt",
] } }
description = { file = "README.md" }
version = { attr = "phal_plugin_mac.version.__version__" }
[tool.setuptools.package-data]
ovos_phal_plugin_mac = [
"*.json",
"locale/*",
"intents/*",
"dialog/*",
"vocab/*",
"regex/*",
"ui/*",
"requirements/*",
]
[project.entry-points."ovos.plugin.phal"]
ovos-phal-plugin-mac = "ovos_phal_plugin_mac:MacOSPlugin"
[tool.uv]
package = true