Skip to content

Commit

Permalink
add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ibnaleem committed Feb 6, 2024
1 parent 25ca05e commit d13f4aa
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
from setuptools import setup, find_packages

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setup(
name="mixtral.py",
version="0.0.1",
author="Ibn Aleem",
author_email="ibnaleem@outlook.com",
description="A Python module for running the Mixtral-8x7B language model with customisable precision and attention mechanisms.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ibnaleem/mixtral.py",
packages=find_packages("src"),
package_dir={"": "src"},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
install_requires=['torch', 'transformers']
)

0 comments on commit d13f4aa

Please sign in to comment.