forked from stanford-futuredata/stk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (28 loc) · 820 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
from setuptools import find_packages, setup
install_requires = [
'torch>=2.4.0,<3.0',
'triton>=2.1.0',
]
extra_deps = {}
extra_deps['dev'] = [
'absl-py',
]
extra_deps['all'] = list(set(dep for deps in extra_deps.values() for dep in deps))
setup(
name="stanford-stk",
version="0.7.0",
author="Trevor Gale",
author_email="[email protected]",
description="Sparse Toolkit",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url="https://github.com/stanford-futuredata/stk",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: Unix",
],
packages=find_packages(),
install_requires=install_requires,
extras_require=extra_deps,
)