Skip to content

Commit d13f4aa

Browse files
committed
add setup.py
1 parent 25ca05e commit d13f4aa

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

setup.py

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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+
)

0 commit comments

Comments
 (0)