bump version and include in package (#475)

This commit is contained in:
Awni Hannun 2024-02-21 09:40:36 -08:00 committed by GitHub
parent ab9172baac
commit 97c09a863d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View File

@ -1,2 +1,4 @@
from .convert import convert
from .utils import generate, load
__version__ = "0.0.13"

View File

@ -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",