Skip to content

Commit e53005a

Browse files
committed
add ext_modules
1 parent 39c41e7 commit e53005a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import glob
66
import os
77

8-
from setuptools import find_packages, setup
8+
from setuptools import find_packages, setup, Extension
99

1010

1111
libs = list(glob.glob("./bitsandbytes/libbitsandbytes*.so"))
@@ -33,6 +33,7 @@ def read(fname):
3333
extras_require={'benchmark': ['pandas', 'matplotlib']},
3434
long_description=read("README.md"),
3535
long_description_content_type="text/markdown",
36+
ext_modules=[Extension("bitsandbytes", sources=[], language="c")],
3637
classifiers=[
3738
"Development Status :: 4 - Beta",
3839
"Topic :: Scientific/Engineering :: Artificial Intelligence",

0 commit comments

Comments
 (0)