forked from shawntan/scattermoe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (23 loc) · 771 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "scattermoe",
version = "0.2.0",
author = "Shawn Tan",
author_email = "[email protected]",
description = "Triton-based implementation of Sparse Mixture of Experts.",
license = "Apache License",
keywords = "triton pytorch llm",
url = "https://github.com/shawntan/scattermoe",
packages=find_packages(),
long_description=read('README.md'),
python_requires='>=3.10.10',
install_requires=['torch', 'triton'],
tests_require=['pytest'],
classifiers=[
"Development Status :: 1 - Planning",
"License :: OSI Approved :: Apache Software License",
],
)