mirror of
https://github.com/ml-explore/mlx-examples.git
synced 2025-08-09 18:36:38 +08:00
bump version and include in package (#475)
This commit is contained in:
parent
ab9172baac
commit
97c09a863d
@ -1,2 +1,4 @@
|
||||
from .convert import convert
|
||||
from .utils import generate, load
|
||||
|
||||
__version__ = "0.0.13"
|
||||
|
@ -1,6 +1,7 @@
|
||||
import sys
|
||||
from pathlib import Path
|
||||
|
||||
import mlx_lm
|
||||
import pkg_resources
|
||||
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)]
|
||||
setup(
|
||||
name="mlx-lm",
|
||||
version="0.0.12",
|
||||
version=mlx_lm.__version__,
|
||||
description="LLMs on Apple silicon with MLX and the Hugging Face Hub",
|
||||
long_description=open("README.md", encoding="utf-8").read(),
|
||||
long_description_content_type="text/markdown",
|
||||
|
Loading…
Reference in New Issue
Block a user