-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
46 lines (43 loc) · 1.04 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "whisperbox"
version = "1.0.7"
description = "WhisperBox - Record and transcribe audio with ease"
authors = [
{name = "Ty Fiero", email = "[email protected]"},
{name = "Mike Bird", email = "[email protected]"}
]
readme = "README.md"
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.10"
dependencies = [
"pydub>=0.25.1",
"pyaudio>=0.2.13",
"rich>=13.3.0",
"pyyaml>=6.0",
"anthropic>=0.43.0",
"openai>=1.59.7",
"ollama>=0.4.6",
"groq>=0.15.0",
"toga>=0.4.8",
"toga-cocoa>=0.4.8",
"inquirerpy>=0.3.4",
"requests>=2.32.3",
"pyperclip>=1.9.0",
"sounddevice>=0.5.1",
]
[project.scripts]
wb = "whisperbox.main:main"
[tool.hatch.build.targets.wheel]
packages = ["src/whisperbox"]
include = [
"src/whisperbox/profiles/*.yaml",
"src/whisperbox/scripts/*.py"
]