-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
60 lines (54 loc) · 1.5 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
[tool.poetry]
name = "bro_listen"
version = "0.2.0"
description = "Interact with openAI API with voice"
authors = ["Mikolaj Kaczmarek <[email protected]>"]
readme = "README.md"
license = "MIT License (MIT)"
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
]
keywords = ["voice recognition", "chat", "transcription", "vosk", "openai"]
homepage = "https://github.com/mikkac/bro_listen"
include = ["src/bro_listen/config.toml"]
[tool.poetry.scripts]
bro_listen = "bro_listen.bro_listen:run"
[tool.poetry.dependencies]
python = "^3.8"
vosk = "^0.3.45"
sounddevice = "^0.4.5"
openai = "^0.25.0"
pyttsx3 = "^2.90"
rich = "^12.6.0"
toml = "^0.10.2"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pre-commit = "^2.21.0"
black = "^22.12.0"
types-toml = "^0.10.8"
bumpver = "^2022.1120"
mypy = "^0.991"
pylint = "^2.15.9"
isort = "^5.11.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.bumpver]
current_version = "0.2.0"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
]
"src/bro_listen/__init__.py" = ["{version}"]