-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.98 KB
/
pyproject.toml
File metadata and controls
60 lines (54 loc) · 1.98 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "stt-prompt"
version = "1.0.0"
description = "Speak instead of typing! Convert voice to text anywhere - AI chatbots, messaging apps, social media, emails, documents. Press hotkey, speak, text appears at cursor."
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Zun", email = "zunxbt@gmail.com"}
]
requires-python = ">=3.9"
keywords = ["stt", "speech-to-text", "voice", "dictation", "transcription", "whisper", "chatgpt", "ai-prompt"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Sound/Audio :: Speech",
]
dependencies = [
"sounddevice>=0.4.6",
"numpy>=1.20.0,<2.3.0",
"pynput>=1.7.6",
"pyperclip>=1.8.0",
"pystray>=0.19.0",
"Pillow>=9.0.0",
"curl_cffi>=0.5.0",
]
[project.optional-dependencies]
dev = ["build", "twine"]
[project.scripts]
dictate = "voice_dictation.cli:main"
chatgpt-auth = "voice_dictation.cli:auth"
chatgpt-auth-status = "voice_dictation.cli:auth_status"
chatgpt-auth-delete = "voice_dictation.cli:auth_delete"
dictate-hotkey-install = "voice_dictation.setup_autostart:install_cmd"
dictate-hotkey-status = "voice_dictation.setup_autostart:status_cmd"
dictate-hotkey-uninstall = "voice_dictation.setup_autostart:uninstall_cmd"
dictate-hotkey = "voice_dictation.hotkey_service:main"
[project.urls]
Homepage = "https://github.com/zunmax/stt-prompt"
Issues = "https://github.com/zunmax/stt-prompt/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
voice_dictation = ["py.typed"]