Skip to content

Commit 55f3675

Browse files
alexzhang13azhang3-sc
authored andcommitted
Create setup.py
1 parent 2e42b49 commit 55f3675

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

setup.py

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import setuptools
2+
3+
with open("README.md", "r", encoding="utf-8") as f:
4+
long_description = f.read()
5+
6+
setuptools.setup(
7+
name="Unofficial FlashAttention2 with Custom Masks",
8+
version="0.1.0",
9+
packages=["fa2_custom_mask"],
10+
description='Unofficial implementation of FlashAttention2 with Custom Masks',
11+
long_description=long_description,
12+
long_description_content_type="text/markdown",
13+
install_requires=[
14+
"triton",
15+
"torch",
16+
],
17+
python_requires=">=3.8",
18+
)

0 commit comments

Comments
 (0)