##// END OF EJS Templates
Reused the previously unused find_entry_points in setup.py
Nir Schulman -
Show More
@@ -106,9 +106,6 b' IPython.lib.tests = *.wav'
106 IPython.testing.plugin = *.txt
106 IPython.testing.plugin = *.txt
107
107
108 [options.entry_points]
108 [options.entry_points]
109 console_scripts =
110 ipython = IPython:start_ipython
111 ipython3 = IPython:start_ipython
112 pygments.lexers =
109 pygments.lexers =
113 ipythonconsole = IPython.lib.lexers:IPythonConsoleLexer
110 ipythonconsole = IPython.lib.lexers:IPythonConsoleLexer
114 ipython = IPython.lib.lexers:IPythonLexer
111 ipython = IPython.lib.lexers:IPythonLexer
@@ -66,7 +66,7 b' from setuptools import setup'
66 # Our own imports
66 # Our own imports
67 sys.path.insert(0, ".")
67 sys.path.insert(0, ".")
68
68
69 from setupbase import target_update
69 from setupbase import target_update, find_entry_points
70
70
71 from setupbase import (
71 from setupbase import (
72 setup_args,
72 setup_args,
@@ -139,6 +139,9 b" setup_args['cmdclass'] = {"
139 'install_scripts_sym': install_scripts_for_symlink,
139 'install_scripts_sym': install_scripts_for_symlink,
140 'unsymlink': unsymlink,
140 'unsymlink': unsymlink,
141 }
141 }
142 setup_args["entry_points"] = {
143 "console_scripts": find_entry_points()
144 }
142
145
143 #---------------------------------------------------------------------------
146 #---------------------------------------------------------------------------
144 # Do the actual setup now
147 # Do the actual setup now
General Comments 0
You need to be logged in to leave comments. Login now