-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
38 lines (32 loc) · 1.03 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ovos-workshop"
dynamic = ["version"]
description = "frameworks, templates and patches for the OpenVoiceOS universe"
readme = "README.md"
license = "apache-2.0"
authors = [{name = "jarbasAi", email = "jarbasai@mailfence.com"}]
requires-python = ">=3.9"
dependencies = [
"ovos-utils>= 0.7.0,<1.0.0",
"ovos_bus_client>=1.3.8a1,<2.0.0",
"ovos-config>=0.0.12,<3.0.0",
"ovos-solver-yes-no-plugin>=0.0.1,<1.0.0",
"ovos-number-parser>=0.0.1,<1.0.0",
"rapidfuzz",
"langcodes",
"padacioso>=1.0.0, <2.0.0",
]
[project.urls]
Homepage = "https://github.com/OpenVoiceOS/OVOS-workshop"
Repository = "https://github.com/OpenVoiceOS/OVOS-workshop"
[project.scripts]
ovos-skill-launcher = "ovos_workshop.skill_launcher:_launch_script"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["ovos_workshop*"]
[tool.setuptools.dynamic]
version = {attr = "ovos_workshop.version.__version__"}