forked from mcinteerj/langlistn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 1 KB
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 1 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "langlistn"
version = "0.3.0"
description = "Real-time audio translation to English — runs locally with Whisper on Apple Silicon"
requires-python = ">=3.11"
license = {text = "MIT"}
readme = "README.md"
authors = [{name = "Jake McInteer"}]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Multimedia :: Sound/Audio",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"sounddevice>=0.5",
"python-dotenv>=1.0",
"mlx-whisper>=0.4",
"numpy>=1.26",
"boto3>=1.34",
"silero-vad>=5.1",
]
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
langlistn = "langlistn.__main__:main"
[project.urls]
Homepage = "https://github.com/mcinteerj/langlistn"