Skip to content

Commit 1a9f37d

Browse files
committed
remove __name__ in setup.py
1 parent e86e114 commit 1a9f37d

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

setup.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
from Cython.Build import cythonize
33
from setuptools import setup
44

5-
if __name__ == "__main__":
6-
setup(
7-
ext_modules=cythonize("src/spmat/linalg.pyx"),
8-
include_dirs=[numpy.get_include()],
9-
)
5+
setup(
6+
ext_modules=cythonize("src/spmat/linalg.pyx"),
7+
include_dirs=[numpy.get_include()],
8+
)

0 commit comments

Comments
 (0)