File tree 3 files changed +25
-1
lines changed
3 files changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -41,3 +41,6 @@ assets/*
41
41
42
42
# Don't ignore .gitignore
43
43
! .gitignore
44
+
45
+ # Allow PyPI setup script
46
+ ! setup.py
Original file line number Diff line number Diff line change 1
1
psutil ~= 6.0.0
2
2
requests ~= 2.32.3
3
3
numpy < 2.0.0
4
- torch ~= 1.13.1
4
+ torch ~= 2.2.0
5
5
sentencepiece ~= 0.2.0
6
6
PyYAML ~= 6.0.2
7
7
pynvml ~= 11.5.3
Original file line number Diff line number Diff line change
1
+ from setuptools import setup
2
+
3
+ with open ('requirements.txt' ) as f :
4
+ required = f .read ().splitlines ()
5
+
6
+ setup (
7
+ name = 'AutoGGUF' ,
8
+ version = 'v1.7.1' ,
9
+ packages = ['' ],
10
+ url = 'https://github.com/leafspark/AutoGGUF' ,
11
+ license = 'apache-2.0' ,
12
+ author = 'leafspark' ,
13
+ author_email = '' ,
14
+ description = 'automatically quant GGUF models' ,
15
+ install_requires = required ,
16
+ entry_points = {
17
+ 'console_scripts' : [
18
+ 'autogguf-gui = src.main'
19
+ ]
20
+ }
21
+ )
You can’t perform that action at this time.
0 commit comments