-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpyproject.toml
75 lines (67 loc) · 1.79 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[project]
name = "mlx-omni-server"
version = "0.3.5"
description = "MLX Omni Server is a server that provides OpenAI-compatible APIs using Apple's MLX framework."
requires-python = ">=3.11,<3.12"
readme = "README.md"
license = "MIT"
keywords = [
"mlx",
"ai",
"agi",
"aigc",
"server",
"openai",
"tts",
"stt",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"fastapi>=0.115.4,<0.116",
"python-multipart>=0.0.20,<0.0.21",
"pydantic>=2.9.2,<3",
"f5-tts-mlx>=0.2.5,<0.3",
"uvicorn>=0.34.0,<0.35",
"numba>=0.57.0",
"mlx-whisper>=0.4.1,<0.5",
"mlx-lm>=0.22.4,<0.23",
"huggingface-hub>=0.29.1,<0.30",
"diffusionkit>=0.5.1,<0.6",
"sse-starlette>=2.1.3,<3",
"outlines>=0.1.11,<0.2",
"aiohttp>=3.11.11,<4",
"rich>=13.9.4",
"openai==1.66.3",
]
[project.urls]
Repository = "https://github.com/madroidmaq/mlx-omni-server"
[project.scripts]
mlx-omni-server = "mlx_omni_server.main:start"
[dependency-groups]
dev = [
"pytest>=8.3.3,<9",
"httpx>=0.27.2,<0.28",
"pre-commit>=4.0.1,<5",
"black>=24.10.0,<25",
"isort>=5.13.2,<6",
]
[tool.hatch.build.targets.sdist]
include = ["src/mlx_omni_server"]
[tool.hatch.build.targets.wheel]
include = ["src/mlx_omni_server"]
[tool.hatch.build.targets.wheel.sources]
"src/mlx_omni_server" = "mlx_omni_server"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"