-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (56 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
63 lines (56 loc) · 1.5 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
[project]
name = "mlx-gpt-oss"
version = "1.0.3"
description = "Minimal OpenAI-compatible server for GPT-OSS models on Apple Silicon with MLX"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.11"
license = "MIT"
authors = [
{name = "Hayssam Keilany"},
]
keywords = [
"gpt-oss",
"harmony",
"mlx",
"fastapi",
"openai-compatible",
"minimal",
"mlx-lm",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
license-files = ["LICEN[CS]E*"]
dependencies = [
"fastapi>=0.115,<1",
"mlx-lm>=0.30,<1",
"openai-harmony>=0.0.8,<1",
"loguru>=0.7,<1",
"pydantic>=2,<3",
"uvicorn>=0.35,<1",
]
[project.scripts]
mlx-gpt-oss = "server:main"
[project.urls]
Homepage = "https://github.com/icelaglace/mlx-gpt-oss"
Repository = "https://github.com/icelaglace/mlx-gpt-oss"
Issues = "https://github.com/icelaglace/mlx-gpt-oss/issues"
[project.optional-dependencies]
dev = [
"build>=1.2,<2",
"httpx>=0.27,<1",
"pytest>=8,<10",
"twine>=5,<7",
]
[build-system]
requires = ["setuptools>=77.0.3", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["server", "harmony", "schemas", "protocol", "response_store"]