Commit a8d81e52 authored by Mark Florisson's avatar Mark Florisson

Include cygdb in setuptools distribution

parent c0440965
...@@ -85,12 +85,15 @@ if 'setuptools' in sys.modules: ...@@ -85,12 +85,15 @@ if 'setuptools' in sys.modules:
else: else:
if os.name == "posix": if os.name == "posix":
scripts = ["bin/cython"] scripts = ["bin/cython"]
if include_debugger:
scripts.append('bin/cygdb')
else: else:
scripts = ["cython.py"] scripts = ["cython.py"]
if include_debugger:
scripts.append('cygdb.py') if include_debugger:
if os.name == "posix":
scripts.append('bin/cygdb')
else:
scripts.append('cygdb.py')
def compile_cython_modules(profile=False, compile_more=False, cython_with_refnanny=False): def compile_cython_modules(profile=False, compile_more=False, cython_with_refnanny=False):
source_root = os.path.abspath(os.path.dirname(__file__)) source_root = os.path.abspath(os.path.dirname(__file__))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment