forked from Shadowfita/parakeet-tdt-0.6b-v2-fastapi
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (79 loc) · 2.52 KB
/
pyproject.toml
File metadata and controls
91 lines (79 loc) · 2.52 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[project]
name = "parakeet-mlx-fastapi"
dynamic = ["version"]
description = "High-accuracy English speech-to-text FastAPI service using Parakeet-MLX models (Fork of Shadowfita/parakeet-mlx-0.6b-v2-fastapi)"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "Yash Agarwal", email = "13733968+yashhere@users.noreply.github.com"},
]
maintainers = [
{name = "Yash Agarwal", email = "13733968+yashhere@users.noreply.github.com"},
]
keywords = ["speech-to-text", "fastapi", "parakeet", "mlx", "transcription", "macos"]
classifiers = [
"Development Status :: 4 - Beta",
"Private :: Do Not Upload",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"fastapi>=0.100.0",
"uvicorn[standard]>=0.20.0",
"numpy>=1.22.0,<2.3",
"pydantic>=2.0.0",
"python-multipart>=0.0.6",
"ffmpeg-python>=0.2.0",
"python-dotenv>=1.0.0",
"parakeet-mlx>=0.3.0",
"librosa>=0.10.0",
"soundfile>=0.12.0",
"typer>=0.9.0",
"colorlog>=6.7.0",
]
[project.optional-dependencies]
dev = [
"ruff>=0.1.0",
"pre-commit>=3.0.0",
]
[project.scripts]
parakeet-server = "parakeet_service.main:main"
[project.urls]
Homepage = "https://github.com/yashhere/parakeet-mlx-fastapi"
Repository = "https://github.com/yashhere/parakeet-mlx-fastapi"
"Original Repository" = "https://github.com/Shadowfita/parakeet-tdt-0.6b-v2-fastapi"
"Upstream" = "https://github.com/Shadowfita/parakeet-tdt-0.6b-v2-fastapi"
Issues = "https://github.com/yashhere/parakeet-mlx-fastapi/issues"
[build-system]
requires = ["hatchling", "uv-dynamic-versioning"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "uv-dynamic-versioning"
[tool.uv-dynamic-versioning]
fallback-version = "0.0.0"
[tool.hatch.build]
platforms = ["macos"]
[tool.hatch.build.targets.wheel]
packages = ["parakeet_service"]
platforms = ["macos"]
[tool.hatch.build.targets.sdist]
include = [
"/parakeet_service",
"/README.md",
"/LICENSE",
]
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "B", "A", "S", "T", "Q"]
ignore = ["E501", "S101"]