mirror of https://github.com/leafspark/AutoGGUF
22 lines
479 B
Python
22 lines
479 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 = src.main'
|
|
]
|
|
}
|
|
)
|