Skip to content
Snippets Groups Projects
Commit 5ee006a3a006 authored by Stefan Behnel's avatar Stefan Behnel
Browse files

globally install "cythonize" script

parent ce7d2221f54b
Branches
No related tags found
No related merge requests found
#!/usr/bin/env python
#
# Cython -- enhanced main program
#
if __name__ == '__main__':
from Cython.Build.Cythonize import main
main()
......@@ -74,8 +74,9 @@
setuptools_extra_args['entry_points'] = {
'console_scripts': [
'cython = Cython.Compiler.Main:setuptools_main',
'cythonize = Cython.Build.Cythonize:main'
]
}
scripts = []
else:
if os.name == "posix":
......@@ -77,7 +78,7 @@
]
}
scripts = []
else:
if os.name == "posix":
scripts = ["bin/cython"]
scripts = ["bin/cython", 'bin/cythonize']
else:
......@@ -83,5 +84,5 @@
else:
scripts = ["cython.py"]
scripts = ["cython.py", "cythonize.py"]
if include_debugger:
if 'setuptools' in sys.modules:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment