setup.py 256 Bytes
Newer Older
zhangqha's avatar
zhangqha committed
1
2
3
4
5
6
7
8
9
10
11
12
from setuptools import setup, find_packages

setup(
    name='MLAttention',
    packages=find_packages("triton_mla_op"),
    package_dir={"": "triton_mla_op"},
    include_package_data=True,
    install_requires=[
        'triton',
        'torch'
    ]
)