mirror of
https://github.com/ml-explore/mlx-examples.git
synced 2025-09-24 15:58:11 +08:00
bump version and include in package (#475)
This commit is contained in:
@@ -1,2 +1,4 @@
|
|||||||
from .convert import convert
|
from .convert import convert
|
||||||
from .utils import generate, load
|
from .utils import generate, load
|
||||||
|
|
||||||
|
__version__ = "0.0.13"
|
||||||
|
@@ -1,6 +1,7 @@
|
|||||||
import sys
|
import sys
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
|
import mlx_lm
|
||||||
import pkg_resources
|
import pkg_resources
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
@@ -8,7 +9,7 @@ with open(Path(__file__).parent / "mlx_lm/requirements.txt") as fid:
|
|||||||
requirements = [str(r) for r in pkg_resources.parse_requirements(fid)]
|
requirements = [str(r) for r in pkg_resources.parse_requirements(fid)]
|
||||||
setup(
|
setup(
|
||||||
name="mlx-lm",
|
name="mlx-lm",
|
||||||
version="0.0.12",
|
version=mlx_lm.__version__,
|
||||||
description="LLMs on Apple silicon with MLX and the Hugging Face Hub",
|
description="LLMs on Apple silicon with MLX and the Hugging Face Hub",
|
||||||
long_description=open("README.md", encoding="utf-8").read(),
|
long_description=open("README.md", encoding="utf-8").read(),
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
|
Reference in New Issue
Block a user