File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change
1
+ from setuptools import setup , find_packages
2
+
3
+ with open ("README.md" , "r" , encoding = "utf-8" ) as fh :
4
+ long_description = fh .read ()
5
+
6
+ setup (
7
+ name = "mixtral.py" ,
8
+ version = "0.0.1" ,
9
+ author = "Ibn Aleem" ,
10
+ author_email = "ibnaleem@outlook.com" ,
11
+ description = "A Python module for running the Mixtral-8x7B language model with customisable precision and attention mechanisms." ,
12
+ long_description = long_description ,
13
+ long_description_content_type = "text/markdown" ,
14
+ url = "https://github.com/ibnaleem/mixtral.py" ,
15
+ packages = find_packages ("src" ),
16
+ package_dir = {"" : "src" },
17
+ classifiers = [
18
+ "Programming Language :: Python :: 3" ,
19
+ "License :: OSI Approved :: GNU General Public License v3 (GPLv3)" ,
20
+ "Operating System :: OS Independent" ,
21
+ ],
22
+ python_requires = ">=3.6" ,
23
+ install_requires = ['torch' , 'transformers' ]
24
+ )
You can’t perform that action at this time.
0 commit comments