##// END OF EJS Templates
Put pygments.lexers entry point in setup.cfg
James Morris -
Show More
@@ -1,29 +1,35 b''
1 [metadata]
1 [metadata]
2 version = attr: IPython.core.release.__version__
2 version = attr: IPython.core.release.__version__
3 license_file = LICENSE
3 license_file = LICENSE
4 project_urls =
4 project_urls =
5 Documentation = https://ipython.readthedocs.io/
5 Documentation = https://ipython.readthedocs.io/
6 Funding = https://numfocus.org/
6 Funding = https://numfocus.org/
7 Source = https://github.com/ipython/ipython
7 Source = https://github.com/ipython/ipython
8 Tracker = https://github.com/ipython/ipython/issues
8 Tracker = https://github.com/ipython/ipython/issues
9
9
10 [options]
10 [options]
11 install_requires =
11 install_requires =
12 setuptools>=18.5
12 setuptools>=18.5
13 jedi>=0.16
13 jedi>=0.16
14 decorator
14 decorator
15 pickleshare
15 pickleshare
16 traitlets>=4.2
16 traitlets>=4.2
17 prompt_toolkit>=2.0.0,<3.1.0,!=3.0.0,!=3.0.1
17 prompt_toolkit>=2.0.0,<3.1.0,!=3.0.0,!=3.0.1
18 pygments
18 pygments
19 backcall
19 backcall
20 stack_data
20 stack_data
21 matplotlib-inline
21 matplotlib-inline
22 pexpect>4.3; sys_platform != "win32"
22 pexpect>4.3; sys_platform != "win32"
23 appnope; sys_platform == "darwin"
23 appnope; sys_platform == "darwin"
24 colorama; sys_platform == "win32"
24 colorama; sys_platform == "win32"
25
25
26 [options.entry_points]
27 pygments.lexers =
28 ipythonconsole = IPython.lib.lexers:IPythonConsoleLexer
29 ipython = IPython.lib.lexers:IPythonLexer
30 ipython3 = IPython.lib.lexers:IPython3Lexer
31
26 [velin]
32 [velin]
27 ignore_patterns =
33 ignore_patterns =
28 IPython/core/tests,
34 IPython/core/tests,
29 IPython/testing
35 IPython/testing
@@ -1,216 +1,209 b''
1 #!/usr/bin/env python3
1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*-
2 # -*- coding: utf-8 -*-
3 """Setup script for IPython.
3 """Setup script for IPython.
4
4
5 Under Posix environments it works like a typical setup.py script.
5 Under Posix environments it works like a typical setup.py script.
6 Under Windows, the command sdist is not supported, since IPython
6 Under Windows, the command sdist is not supported, since IPython
7 requires utilities which are not available under Windows."""
7 requires utilities which are not available under Windows."""
8
8
9 #-----------------------------------------------------------------------------
9 #-----------------------------------------------------------------------------
10 # Copyright (c) 2008-2011, IPython Development Team.
10 # Copyright (c) 2008-2011, IPython Development Team.
11 # Copyright (c) 2001-2007, Fernando Perez <fernando.perez@colorado.edu>
11 # Copyright (c) 2001-2007, Fernando Perez <fernando.perez@colorado.edu>
12 # Copyright (c) 2001, Janko Hauser <jhauser@zscout.de>
12 # Copyright (c) 2001, Janko Hauser <jhauser@zscout.de>
13 # Copyright (c) 2001, Nathaniel Gray <n8gray@caltech.edu>
13 # Copyright (c) 2001, Nathaniel Gray <n8gray@caltech.edu>
14 #
14 #
15 # Distributed under the terms of the Modified BSD License.
15 # Distributed under the terms of the Modified BSD License.
16 #
16 #
17 # The full license is in the file COPYING.rst, distributed with this software.
17 # The full license is in the file COPYING.rst, distributed with this software.
18 #-----------------------------------------------------------------------------
18 #-----------------------------------------------------------------------------
19
19
20 import os
20 import os
21 import sys
21 import sys
22
22
23 # **Python version check**
23 # **Python version check**
24 #
24 #
25 # This check is also made in IPython/__init__, don't forget to update both when
25 # This check is also made in IPython/__init__, don't forget to update both when
26 # changing Python version requirements.
26 # changing Python version requirements.
27 if sys.version_info < (3, 8):
27 if sys.version_info < (3, 8):
28 pip_message = 'This may be due to an out of date pip. Make sure you have pip >= 9.0.1.'
28 pip_message = 'This may be due to an out of date pip. Make sure you have pip >= 9.0.1.'
29 try:
29 try:
30 import pip
30 import pip
31 pip_version = tuple([int(x) for x in pip.__version__.split('.')[:3]])
31 pip_version = tuple([int(x) for x in pip.__version__.split('.')[:3]])
32 if pip_version < (9, 0, 1) :
32 if pip_version < (9, 0, 1) :
33 pip_message = 'Your pip version is out of date, please install pip >= 9.0.1. '\
33 pip_message = 'Your pip version is out of date, please install pip >= 9.0.1. '\
34 'pip {} detected.'.format(pip.__version__)
34 'pip {} detected.'.format(pip.__version__)
35 else:
35 else:
36 # pip is new enough - it must be something else
36 # pip is new enough - it must be something else
37 pip_message = ''
37 pip_message = ''
38 except Exception:
38 except Exception:
39 pass
39 pass
40
40
41
41
42 error = """
42 error = """
43 IPython 8+ supports Python 3.8 and above, following NEP 29.
43 IPython 8+ supports Python 3.8 and above, following NEP 29.
44 When using Python 2.7, please install IPython 5.x LTS Long Term Support version.
44 When using Python 2.7, please install IPython 5.x LTS Long Term Support version.
45 Python 3.3 and 3.4 were supported up to IPython 6.x.
45 Python 3.3 and 3.4 were supported up to IPython 6.x.
46 Python 3.5 was supported with IPython 7.0 to 7.9.
46 Python 3.5 was supported with IPython 7.0 to 7.9.
47 Python 3.6 was supported with IPython up to 7.16.
47 Python 3.6 was supported with IPython up to 7.16.
48 Python 3.7 was still supported with the 7.x branch.
48 Python 3.7 was still supported with the 7.x branch.
49
49
50 See IPython `README.rst` file for more information:
50 See IPython `README.rst` file for more information:
51
51
52 https://github.com/ipython/ipython/blob/master/README.rst
52 https://github.com/ipython/ipython/blob/master/README.rst
53
53
54 Python {py} detected.
54 Python {py} detected.
55 {pip}
55 {pip}
56 """.format(py=sys.version_info, pip=pip_message )
56 """.format(py=sys.version_info, pip=pip_message )
57
57
58 print(error, file=sys.stderr)
58 print(error, file=sys.stderr)
59 sys.exit(1)
59 sys.exit(1)
60
60
61 # At least we're on the python version we need, move on.
61 # At least we're on the python version we need, move on.
62
62
63 from setuptools import setup
63 from setuptools import setup
64
64
65 # Our own imports
65 # Our own imports
66 from setupbase import target_update
66 from setupbase import target_update
67
67
68 from setupbase import (
68 from setupbase import (
69 setup_args,
69 setup_args,
70 find_packages,
70 find_packages,
71 find_package_data,
71 find_package_data,
72 check_package_data_first,
72 check_package_data_first,
73 find_entry_points,
73 find_entry_points,
74 find_data_files,
74 find_data_files,
75 git_prebuild,
75 git_prebuild,
76 install_symlinked,
76 install_symlinked,
77 install_lib_symlink,
77 install_lib_symlink,
78 install_scripts_for_symlink,
78 install_scripts_for_symlink,
79 unsymlink,
79 unsymlink,
80 )
80 )
81
81
82 #-------------------------------------------------------------------------------
82 #-------------------------------------------------------------------------------
83 # Handle OS specific things
83 # Handle OS specific things
84 #-------------------------------------------------------------------------------
84 #-------------------------------------------------------------------------------
85
85
86 if os.name in ('nt','dos'):
86 if os.name in ('nt','dos'):
87 os_name = 'windows'
87 os_name = 'windows'
88 else:
88 else:
89 os_name = os.name
89 os_name = os.name
90
90
91 # Under Windows, 'sdist' has not been supported. Now that the docs build with
91 # Under Windows, 'sdist' has not been supported. Now that the docs build with
92 # Sphinx it might work, but let's not turn it on until someone confirms that it
92 # Sphinx it might work, but let's not turn it on until someone confirms that it
93 # actually works.
93 # actually works.
94 if os_name == 'windows' and 'sdist' in sys.argv:
94 if os_name == 'windows' and 'sdist' in sys.argv:
95 print('The sdist command is not available under Windows. Exiting.')
95 print('The sdist command is not available under Windows. Exiting.')
96 sys.exit(1)
96 sys.exit(1)
97
97
98
98
99 #-------------------------------------------------------------------------------
99 #-------------------------------------------------------------------------------
100 # Things related to the IPython documentation
100 # Things related to the IPython documentation
101 #-------------------------------------------------------------------------------
101 #-------------------------------------------------------------------------------
102
102
103 # update the manuals when building a source dist
103 # update the manuals when building a source dist
104 if len(sys.argv) >= 2 and sys.argv[1] in ('sdist','bdist_rpm'):
104 if len(sys.argv) >= 2 and sys.argv[1] in ('sdist','bdist_rpm'):
105
105
106 # List of things to be updated. Each entry is a triplet of args for
106 # List of things to be updated. Each entry is a triplet of args for
107 # target_update()
107 # target_update()
108 to_update = [
108 to_update = [
109 ('docs/man/ipython.1.gz',
109 ('docs/man/ipython.1.gz',
110 ['docs/man/ipython.1'],
110 ['docs/man/ipython.1'],
111 'cd docs/man && gzip -9c ipython.1 > ipython.1.gz'),
111 'cd docs/man && gzip -9c ipython.1 > ipython.1.gz'),
112 ]
112 ]
113
113
114
114
115 [ target_update(*t) for t in to_update ]
115 [ target_update(*t) for t in to_update ]
116
116
117 #---------------------------------------------------------------------------
117 #---------------------------------------------------------------------------
118 # Find all the packages, package data, and data_files
118 # Find all the packages, package data, and data_files
119 #---------------------------------------------------------------------------
119 #---------------------------------------------------------------------------
120
120
121 packages = find_packages()
121 packages = find_packages()
122 package_data = find_package_data()
122 package_data = find_package_data()
123
123
124 data_files = find_data_files()
124 data_files = find_data_files()
125
125
126 setup_args['packages'] = packages
126 setup_args['packages'] = packages
127 setup_args['package_data'] = package_data
127 setup_args['package_data'] = package_data
128 setup_args['data_files'] = data_files
128 setup_args['data_files'] = data_files
129
129
130 #---------------------------------------------------------------------------
130 #---------------------------------------------------------------------------
131 # custom distutils commands
131 # custom distutils commands
132 #---------------------------------------------------------------------------
132 #---------------------------------------------------------------------------
133 # imports here, so they are after setuptools import if there was one
133 # imports here, so they are after setuptools import if there was one
134 from setuptools.command.sdist import sdist
134 from setuptools.command.sdist import sdist
135
135
136 setup_args['cmdclass'] = {
136 setup_args['cmdclass'] = {
137 'build_py': \
137 'build_py': \
138 check_package_data_first(git_prebuild('IPython')),
138 check_package_data_first(git_prebuild('IPython')),
139 'sdist' : git_prebuild('IPython', sdist),
139 'sdist' : git_prebuild('IPython', sdist),
140 'symlink': install_symlinked,
140 'symlink': install_symlinked,
141 'install_lib_symlink': install_lib_symlink,
141 'install_lib_symlink': install_lib_symlink,
142 'install_scripts_sym': install_scripts_for_symlink,
142 'install_scripts_sym': install_scripts_for_symlink,
143 'unsymlink': unsymlink,
143 'unsymlink': unsymlink,
144 }
144 }
145
145
146
146
147 #---------------------------------------------------------------------------
147 #---------------------------------------------------------------------------
148 # Handle scripts, dependencies, and setuptools specific things
148 # Handle scripts, dependencies, and setuptools specific things
149 #---------------------------------------------------------------------------
149 #---------------------------------------------------------------------------
150
150
151 # This dict is used for passing extra arguments that are setuptools
151 # This dict is used for passing extra arguments that are setuptools
152 # specific to setup
152 # specific to setup
153 setuptools_extra_args = {}
153 setuptools_extra_args = {}
154
154
155 # setuptools requirements
155 # setuptools requirements
156
156
157 extras_require = dict(
157 extras_require = dict(
158 parallel=["ipyparallel"],
158 parallel=["ipyparallel"],
159 qtconsole=["qtconsole"],
159 qtconsole=["qtconsole"],
160 doc=["Sphinx>=1.3"],
160 doc=["Sphinx>=1.3"],
161 test=[
161 test=[
162 "pytest",
162 "pytest",
163 "testpath",
163 "testpath",
164 "pygments",
164 "pygments",
165 ],
165 ],
166 test_extra=[
166 test_extra=[
167 "pytest",
167 "pytest",
168 "testpath",
168 "testpath",
169 "curio",
169 "curio",
170 "matplotlib!=3.2.0",
170 "matplotlib!=3.2.0",
171 "nbformat",
171 "nbformat",
172 "numpy>=1.17",
172 "numpy>=1.17",
173 "pandas",
173 "pandas",
174 "pygments",
174 "pygments",
175 "trio",
175 "trio",
176 ],
176 ],
177 terminal=[],
177 terminal=[],
178 kernel=["ipykernel"],
178 kernel=["ipykernel"],
179 nbformat=["nbformat"],
179 nbformat=["nbformat"],
180 notebook=["notebook", "ipywidgets"],
180 notebook=["notebook", "ipywidgets"],
181 nbconvert=["nbconvert"],
181 nbconvert=["nbconvert"],
182 )
182 )
183
183
184
184
185 everything = set()
185 everything = set()
186 for key, deps in extras_require.items():
186 for key, deps in extras_require.items():
187 if ':' not in key:
187 if ':' not in key:
188 everything.update(deps)
188 everything.update(deps)
189 extras_require['all'] = list(sorted(everything))
189 extras_require['all'] = list(sorted(everything))
190
190
191 setuptools_extra_args["python_requires"] = ">=3.8"
191 setuptools_extra_args["python_requires"] = ">=3.8"
192 setuptools_extra_args["zip_safe"] = False
192 setuptools_extra_args["zip_safe"] = False
193 setuptools_extra_args["entry_points"] = {
193 setuptools_extra_args["entry_points"] = {"console_scripts": find_entry_points()}
194 "console_scripts": find_entry_points(),
195 "pygments.lexers": [
196 "ipythonconsole = IPython.lib.lexers:IPythonConsoleLexer",
197 "ipython = IPython.lib.lexers:IPythonLexer",
198 "ipython3 = IPython.lib.lexers:IPython3Lexer",
199 ],
200 }
201
194
202 setup_args["extras_require"] = extras_require
195 setup_args["extras_require"] = extras_require
203
196
204 #---------------------------------------------------------------------------
197 #---------------------------------------------------------------------------
205 # Do the actual setup now
198 # Do the actual setup now
206 #---------------------------------------------------------------------------
199 #---------------------------------------------------------------------------
207
200
208 setup_args.update(setuptools_extra_args)
201 setup_args.update(setuptools_extra_args)
209
202
210
203
211
204
212 def main():
205 def main():
213 setup(**setup_args)
206 setup(**setup_args)
214
207
215 if __name__ == '__main__':
208 if __name__ == '__main__':
216 main()
209 main()
General Comments 0
You need to be logged in to leave comments. Login now