-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(core): add update checking support
- add update checking support with AUTOGGUF_CHECK_UPDATE (enabled) env variable - fix setup.py - add localization keys for update checking - update version to v1.7.2 in Localizations.py - formatting changes
- Loading branch information
Showing
4 changed files
with
107 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,17 @@ | ||
from setuptools import setup | ||
|
||
with open('requirements.txt') as f: | ||
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', | ||
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' | ||
] | ||
} | ||
entry_points={"console_scripts": ["autogguf-gui = main:main"]}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters