We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39c41e7 commit e53005aCopy full SHA for e53005a
setup.py
@@ -5,7 +5,7 @@
5
import glob
6
import os
7
8
-from setuptools import find_packages, setup
+from setuptools import find_packages, setup, Extension
9
10
11
libs = list(glob.glob("./bitsandbytes/libbitsandbytes*.so"))
@@ -33,6 +33,7 @@ def read(fname):
33
extras_require={'benchmark': ['pandas', 'matplotlib']},
34
long_description=read("README.md"),
35
long_description_content_type="text/markdown",
36
+ ext_modules=[Extension("bitsandbytes", sources=[], language="c")],
37
classifiers=[
38
"Development Status :: 4 - Beta",
39
"Topic :: Scientific/Engineering :: Artificial Intelligence",
0 commit comments