File size: 519 Bytes
01c7a56 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
#!/usr/bin/env python
from setuptools import setup
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="qmllm",
version="0.1.0",
description="Modality-Balanced Quantization",
author="Shiyao Li",
author_email="shiyao1620@gmail.com",
packages=setuptools.find_packages(),
license="MIT",
long_description=long_description,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)
|