Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Illviljan committed Jan 27, 2022
1 parent de508ac commit c45e083
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,25 @@
]


if __name__ == "__main__":
from Cython.Build import cythonize
# if __name__ == "__main__":
# from Cython.Build import cythonize

# setup(
# ext_modules=cythonize(ext_modules, language_level="3"),
# )




if __name__ == "__main__":
setup(
ext_modules=cythonize(ext_modules, language_level="3"),
)
# # ...
# setup_requires=[
# # Setuptools 18.0 properly handles Cython extensions.
# 'setuptools>=18.0',
# 'cython',
# ],
ext_modules=[
ext_modules,
],
)

0 comments on commit c45e083

Please sign in to comment.