forked from mlc-ai/modern-gpu-programming-for-mlsys
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 798 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (26 loc) · 798 Bytes
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
from setuptools import setup, find_packages
import tirx_tutorial
requirements = [
'jupyter',
'numpy',
'matplotlib',
'requests',
'pandas',
'sphinx==5.3.0',
# Pin sphinxcontrib-bibtex and pybtex together: newer sphinxcontrib-bibtex
# (>=2.6) relies on a private symbol `_FakeEntryPoint` that only exists in
# pybtex 0.24.x. Mismatched versions break `import sphinxcontrib.bibtex`,
# which d2lbook always triggers via _build/rst/conf.py.
'sphinxcontrib-bibtex<2.6',
'pybtex<0.25',
]
setup(
name='tirx-tutorial',
version=tirx_tutorial.__version__,
python_requires='>=3.10',
author='MLC Community',
description='Modern GPU Programming For MLSys',
packages=find_packages(),
zip_safe=True,
install_requires=requirements,
)