-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (38 loc) · 986 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
from pathlib import Path
from setuptools import setup
directory = Path(__file__).resolve().parent
with open(directory / "README.md", encoding="utf-8") as f:
long_description = f.read()
setup(
name="triton-kernels",
version="0.1.0",
author="Sinjin Jeong",
description="Triton kernels for Flux",
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ai-compiler-study/triton-kernels",
packages=[
"triton_kernels",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
install_requires=[
"numpy",
"torch",
"triton>=2.2.0",
"einops",
],
extras_require={
"linting": [
"pre-commit>=3.5.0",
],
"testing": [
"pytest>=7.4.0",
"pytest-xdist>=3.5.0",
],
},
python_requires=">=3.8",
)