-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
33 lines (29 loc) · 985 Bytes
/
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
[tool.poetry]
name = "voice-presentation-control"
version = "1.0.2"
description = "voice-presentation-control is a tool that allows you to control your presentation using voice when you don't have a presentation pen or when it's inconvinient to use the keyboard."
authors = ["Xyphuz <[email protected]>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/wst24365888/voice-presentation-control"
repository = "https://github.com/wst24365888/voice-presentation-control"
include = [
"LICENSE",
"voice_presentation_control/vosk_models/**",
"voice_presentation_control/configs/**",
]
[tool.poetry.dependencies]
python = "^3.9"
PyAudio = "^0.2.11"
typer = "^0.4.1"
PyAutoGUI = "^0.9.53"
numpy = "^1.22.3"
vosk = "^0.3.32"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
pre-commit = "^2.19.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
vpc = "voice_presentation_control.cli:start_cli"