mirror of https://github.com/leafspark/AutoGGUF
18 lines
445 B
Python
18 lines
445 B
Python
from setuptools import setup
|
|
|
|
with open("requirements.txt") as f:
|
|
required = f.read().splitlines()
|
|
|
|
setup(
|
|
name="AutoGGUF",
|
|
version="v1.7.1",
|
|
packages=[""],
|
|
url="https://github.com/leafspark/AutoGGUF",
|
|
license="apache-2.0",
|
|
author="leafspark",
|
|
author_email="",
|
|
description="automatically quant GGUF models",
|
|
install_requires=required,
|
|
entry_points={"console_scripts": ["autogguf-gui = main:main"]},
|
|
)
|