-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
31 lines (27 loc) · 925 Bytes
/
setup.py
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
import setuptools
import pkg_resources
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
with open(this_directory / "requirements.txt") as fid:
requirements = [str(r) for r in pkg_resources.parse_requirements(fid)]
setuptools.setup(
name="mlx-llm-server",
version="0.1.10",
author="anchen",
author_email="[email protected]",
description="server to serve mlx model as an OpenAI compatible API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mzbac/mlx-llm",
license="MIT",
install_requires=requirements,
package_dir={"": "."},
packages=setuptools.find_packages(where="."),
python_requires=">=3.10",
entry_points={
"console_scripts": [
"mlx-llm-server=mlx_llm_server.__main__:main",
],
},
)