##// END OF EJS Templates
Remove shimmodule util that is now unused (#14606)...
M Bussonnier -
r29001:09a23c44 merge
parent child Browse files
Show More
@@ -1,390 +1,389
1 [build-system]
1 [build-system]
2 requires = ["setuptools>=61.2"]
2 requires = ["setuptools>=61.2"]
3 # We need access to the 'setupbase' module at build time.
3 # We need access to the 'setupbase' module at build time.
4 # Hence we declare a custom build backend.
4 # Hence we declare a custom build backend.
5 build-backend = "_build_meta" # just re-exports setuptools.build_meta definitions
5 build-backend = "_build_meta" # just re-exports setuptools.build_meta definitions
6 backend-path = ["."]
6 backend-path = ["."]
7
7
8 [project]
8 [project]
9 name = "ipython"
9 name = "ipython"
10 description = "IPython: Productive Interactive Computing"
10 description = "IPython: Productive Interactive Computing"
11 keywords = ["Interactive", "Interpreter", "Shell", "Embedding"]
11 keywords = ["Interactive", "Interpreter", "Shell", "Embedding"]
12 classifiers = [
12 classifiers = [
13 "Framework :: IPython",
13 "Framework :: IPython",
14 "Framework :: Jupyter",
14 "Framework :: Jupyter",
15 "Intended Audience :: Developers",
15 "Intended Audience :: Developers",
16 "Intended Audience :: Science/Research",
16 "Intended Audience :: Science/Research",
17 "License :: OSI Approved :: BSD License",
17 "License :: OSI Approved :: BSD License",
18 "Programming Language :: Python",
18 "Programming Language :: Python",
19 "Programming Language :: Python :: 3",
19 "Programming Language :: Python :: 3",
20 "Programming Language :: Python :: 3 :: Only",
20 "Programming Language :: Python :: 3 :: Only",
21 "Topic :: System :: Shells",
21 "Topic :: System :: Shells",
22 ]
22 ]
23 requires-python = ">=3.11"
23 requires-python = ">=3.11"
24 dependencies = [
24 dependencies = [
25 'colorama; sys_platform == "win32"',
25 'colorama; sys_platform == "win32"',
26 "decorator",
26 "decorator",
27 "jedi>=0.16",
27 "jedi>=0.16",
28 "matplotlib-inline",
28 "matplotlib-inline",
29 'pexpect>4.3; sys_platform != "win32" and sys_platform != "emscripten"',
29 'pexpect>4.3; sys_platform != "win32" and sys_platform != "emscripten"',
30 "prompt_toolkit>=3.0.41,<3.1.0",
30 "prompt_toolkit>=3.0.41,<3.1.0",
31 "pygments>=2.4.0",
31 "pygments>=2.4.0",
32 "stack_data",
32 "stack_data",
33 "traitlets>=5.13.0",
33 "traitlets>=5.13.0",
34 "typing_extensions>=4.6; python_version<'3.12'",
34 "typing_extensions>=4.6; python_version<'3.12'",
35 ]
35 ]
36 dynamic = ["authors", "license", "version"]
36 dynamic = ["authors", "license", "version"]
37
37
38 [project.entry-points."pygments.lexers"]
38 [project.entry-points."pygments.lexers"]
39 ipythonconsole = "IPython.lib.lexers:IPythonConsoleLexer"
39 ipythonconsole = "IPython.lib.lexers:IPythonConsoleLexer"
40 ipython = "IPython.lib.lexers:IPythonLexer"
40 ipython = "IPython.lib.lexers:IPythonLexer"
41 ipython3 = "IPython.lib.lexers:IPython3Lexer"
41 ipython3 = "IPython.lib.lexers:IPython3Lexer"
42
42
43 [project.scripts]
43 [project.scripts]
44 ipython = "IPython:start_ipython"
44 ipython = "IPython:start_ipython"
45 ipython3 = "IPython:start_ipython"
45 ipython3 = "IPython:start_ipython"
46
46
47 [project.readme]
47 [project.readme]
48 file = "long_description.rst"
48 file = "long_description.rst"
49 content-type = "text/x-rst"
49 content-type = "text/x-rst"
50
50
51 [project.urls]
51 [project.urls]
52 Homepage = "https://ipython.org"
52 Homepage = "https://ipython.org"
53 Documentation = "https://ipython.readthedocs.io/"
53 Documentation = "https://ipython.readthedocs.io/"
54 Funding = "https://numfocus.org/"
54 Funding = "https://numfocus.org/"
55 Source = "https://github.com/ipython/ipython"
55 Source = "https://github.com/ipython/ipython"
56 Tracker = "https://github.com/ipython/ipython/issues"
56 Tracker = "https://github.com/ipython/ipython/issues"
57
57
58 [project.optional-dependencies]
58 [project.optional-dependencies]
59 black = [
59 black = [
60 "black",
60 "black",
61 ]
61 ]
62 doc = [
62 doc = [
63 "docrepr",
63 "docrepr",
64 "exceptiongroup",
64 "exceptiongroup",
65 "intersphinx_registry",
65 "intersphinx_registry",
66 "ipykernel",
66 "ipykernel",
67 "ipython[test]",
67 "ipython[test]",
68 "matplotlib",
68 "matplotlib",
69 "setuptools>=18.5",
69 "setuptools>=18.5",
70 "sphinx-rtd-theme",
70 "sphinx-rtd-theme",
71 "sphinx>=1.3",
71 "sphinx>=1.3",
72 "sphinxcontrib-jquery",
72 "sphinxcontrib-jquery",
73 ]
73 ]
74 kernel = [
74 kernel = [
75 "ipykernel",
75 "ipykernel",
76 ]
76 ]
77 nbconvert = [
77 nbconvert = [
78 "nbconvert",
78 "nbconvert",
79 ]
79 ]
80 nbformat = [
80 nbformat = [
81 "nbformat",
81 "nbformat",
82 ]
82 ]
83 notebook = [
83 notebook = [
84 "ipywidgets",
84 "ipywidgets",
85 "notebook",
85 "notebook",
86 ]
86 ]
87 parallel = [
87 parallel = [
88 "ipyparallel",
88 "ipyparallel",
89 ]
89 ]
90 qtconsole = [
90 qtconsole = [
91 "qtconsole",
91 "qtconsole",
92 ]
92 ]
93 terminal = []
93 terminal = []
94 test = [
94 test = [
95 "pytest",
95 "pytest",
96 "pytest-asyncio<0.22",
96 "pytest-asyncio<0.22",
97 "testpath",
97 "testpath",
98 "pickleshare",
98 "pickleshare",
99 "packaging",
99 "packaging",
100 ]
100 ]
101 test_extra = [
101 test_extra = [
102 "ipython[test]",
102 "ipython[test]",
103 "curio",
103 "curio",
104 "matplotlib!=3.2.0",
104 "matplotlib!=3.2.0",
105 "nbformat",
105 "nbformat",
106 "numpy>=1.23",
106 "numpy>=1.23",
107 "pandas",
107 "pandas",
108 "trio",
108 "trio",
109 ]
109 ]
110 matplotlib = [
110 matplotlib = [
111 "matplotlib"
111 "matplotlib"
112 ]
112 ]
113 all = [
113 all = [
114 "ipython[black,doc,kernel,nbconvert,nbformat,notebook,parallel,qtconsole,matplotlib]",
114 "ipython[black,doc,kernel,nbconvert,nbformat,notebook,parallel,qtconsole,matplotlib]",
115 "ipython[test,test_extra]",
115 "ipython[test,test_extra]",
116 ]
116 ]
117
117
118 [tool.mypy]
118 [tool.mypy]
119 python_version = "3.10"
119 python_version = "3.10"
120 ignore_missing_imports = true
120 ignore_missing_imports = true
121 follow_imports = 'silent'
121 follow_imports = 'silent'
122 exclude = [
122 exclude = [
123 'test_\.+\.py',
123 'test_\.+\.py',
124 'IPython.utils.tests.test_wildcard',
124 'IPython.utils.tests.test_wildcard',
125 'testing',
125 'testing',
126 'tests',
126 'tests',
127 'PyColorize.py',
127 'PyColorize.py',
128 '_process_win32_controller.py',
128 '_process_win32_controller.py',
129 'IPython/core/application.py',
129 'IPython/core/application.py',
130 'IPython/core/profileapp.py',
130 'IPython/core/profileapp.py',
131 'IPython/lib/deepreload.py',
131 'IPython/lib/deepreload.py',
132 'IPython/sphinxext/ipython_directive.py',
132 'IPython/sphinxext/ipython_directive.py',
133 'IPython/terminal/ipapp.py',
133 'IPython/terminal/ipapp.py',
134 'IPython/utils/_process_win32.py',
134 'IPython/utils/_process_win32.py',
135 'IPython/utils/path.py',
135 'IPython/utils/path.py',
136 ]
136 ]
137 # check_untyped_defs = true
137 # check_untyped_defs = true
138 # disallow_untyped_calls = true
138 # disallow_untyped_calls = true
139 # disallow_untyped_decorators = true
139 # disallow_untyped_decorators = true
140 # ignore_errors = false
140 # ignore_errors = false
141 # ignore_missing_imports = false
141 # ignore_missing_imports = false
142 disallow_incomplete_defs = true
142 disallow_incomplete_defs = true
143 disallow_untyped_defs = true
143 disallow_untyped_defs = true
144 warn_redundant_casts = true
144 warn_redundant_casts = true
145
145
146 [[tool.mypy.overrides]]
146 [[tool.mypy.overrides]]
147 module = [
147 module = [
148 "IPython.core.crashhandler",
148 "IPython.core.crashhandler",
149 ]
149 ]
150 check_untyped_defs = true
150 check_untyped_defs = true
151 disallow_incomplete_defs = true
151 disallow_incomplete_defs = true
152 disallow_untyped_calls = true
152 disallow_untyped_calls = true
153 disallow_untyped_decorators = true
153 disallow_untyped_decorators = true
154 disallow_untyped_defs = true
154 disallow_untyped_defs = true
155 ignore_errors = false
155 ignore_errors = false
156 ignore_missing_imports = false
156 ignore_missing_imports = false
157
157
158 [[tool.mypy.overrides]]
158 [[tool.mypy.overrides]]
159 module = [
159 module = [
160 "IPython.utils.text",
160 "IPython.utils.text",
161 ]
161 ]
162 disallow_untyped_defs = true
162 disallow_untyped_defs = true
163 check_untyped_defs = false
163 check_untyped_defs = false
164 disallow_untyped_decorators = true
164 disallow_untyped_decorators = true
165
165
166 [[tool.mypy.overrides]]
166 [[tool.mypy.overrides]]
167 module = [
167 module = [
168 ]
168 ]
169 disallow_untyped_defs = false
169 disallow_untyped_defs = false
170 ignore_errors = true
170 ignore_errors = true
171 ignore_missing_imports = true
171 ignore_missing_imports = true
172 disallow_untyped_calls = false
172 disallow_untyped_calls = false
173 disallow_incomplete_defs = false
173 disallow_incomplete_defs = false
174 check_untyped_defs = false
174 check_untyped_defs = false
175 disallow_untyped_decorators = false
175 disallow_untyped_decorators = false
176
176
177
177
178 # gloabl ignore error
178 # gloabl ignore error
179 [[tool.mypy.overrides]]
179 [[tool.mypy.overrides]]
180 module = [
180 module = [
181 "IPython",
181 "IPython",
182 "IPython.conftest",
182 "IPython.conftest",
183 "IPython.core.alias",
183 "IPython.core.alias",
184 "IPython.core.async_helpers",
184 "IPython.core.async_helpers",
185 "IPython.core.autocall",
185 "IPython.core.autocall",
186 "IPython.core.builtin_trap",
186 "IPython.core.builtin_trap",
187 "IPython.core.compilerop",
187 "IPython.core.compilerop",
188 "IPython.core.completer",
188 "IPython.core.completer",
189 "IPython.core.completerlib",
189 "IPython.core.completerlib",
190 "IPython.core.debugger",
190 "IPython.core.debugger",
191 "IPython.core.display",
191 "IPython.core.display",
192 "IPython.core.display_functions",
192 "IPython.core.display_functions",
193 "IPython.core.display_trap",
193 "IPython.core.display_trap",
194 "IPython.core.displayhook",
194 "IPython.core.displayhook",
195 "IPython.core.displaypub",
195 "IPython.core.displaypub",
196 "IPython.core.events",
196 "IPython.core.events",
197 "IPython.core.excolors",
197 "IPython.core.excolors",
198 "IPython.core.extensions",
198 "IPython.core.extensions",
199 "IPython.core.formatters",
199 "IPython.core.formatters",
200 "IPython.core.getipython",
200 "IPython.core.getipython",
201 "IPython.core.guarded_eval",
201 "IPython.core.guarded_eval",
202 "IPython.core.history",
202 "IPython.core.history",
203 "IPython.core.historyapp",
203 "IPython.core.historyapp",
204 "IPython.core.hooks",
204 "IPython.core.hooks",
205 "IPython.core.inputtransformer",
205 "IPython.core.inputtransformer",
206 "IPython.core.inputtransformer2",
206 "IPython.core.inputtransformer2",
207 "IPython.core.interactiveshell",
207 "IPython.core.interactiveshell",
208 "IPython.core.logger",
208 "IPython.core.logger",
209 "IPython.core.macro",
209 "IPython.core.macro",
210 "IPython.core.magic",
210 "IPython.core.magic",
211 "IPython.core.magic_arguments",
211 "IPython.core.magic_arguments",
212 "IPython.core.magics.ast_mod",
212 "IPython.core.magics.ast_mod",
213 "IPython.core.magics.auto",
213 "IPython.core.magics.auto",
214 "IPython.core.magics.basic",
214 "IPython.core.magics.basic",
215 "IPython.core.magics.code",
215 "IPython.core.magics.code",
216 "IPython.core.magics.config",
216 "IPython.core.magics.config",
217 "IPython.core.magics.display",
217 "IPython.core.magics.display",
218 "IPython.core.magics.execution",
218 "IPython.core.magics.execution",
219 "IPython.core.magics.extension",
219 "IPython.core.magics.extension",
220 "IPython.core.magics.history",
220 "IPython.core.magics.history",
221 "IPython.core.magics.logging",
221 "IPython.core.magics.logging",
222 "IPython.core.magics.namespace",
222 "IPython.core.magics.namespace",
223 "IPython.core.magics.osm",
223 "IPython.core.magics.osm",
224 "IPython.core.magics.packaging",
224 "IPython.core.magics.packaging",
225 "IPython.core.magics.pylab",
225 "IPython.core.magics.pylab",
226 "IPython.core.magics.script",
226 "IPython.core.magics.script",
227 "IPython.core.oinspect",
227 "IPython.core.oinspect",
228 "IPython.core.page",
228 "IPython.core.page",
229 "IPython.core.payload",
229 "IPython.core.payload",
230 "IPython.core.payloadpage",
230 "IPython.core.payloadpage",
231 "IPython.core.prefilter",
231 "IPython.core.prefilter",
232 "IPython.core.profiledir",
232 "IPython.core.profiledir",
233 "IPython.core.prompts",
233 "IPython.core.prompts",
234 "IPython.core.pylabtools",
234 "IPython.core.pylabtools",
235 "IPython.core.shellapp",
235 "IPython.core.shellapp",
236 "IPython.core.splitinput",
236 "IPython.core.splitinput",
237 "IPython.core.ultratb",
237 "IPython.core.ultratb",
238 "IPython.extensions.autoreload",
238 "IPython.extensions.autoreload",
239 "IPython.extensions.storemagic",
239 "IPython.extensions.storemagic",
240 "IPython.external.qt_for_kernel",
240 "IPython.external.qt_for_kernel",
241 "IPython.external.qt_loaders",
241 "IPython.external.qt_loaders",
242 "IPython.lib.backgroundjobs",
242 "IPython.lib.backgroundjobs",
243 "IPython.lib.clipboard",
243 "IPython.lib.clipboard",
244 "IPython.lib.demo",
244 "IPython.lib.demo",
245 "IPython.lib.display",
245 "IPython.lib.display",
246 "IPython.lib.editorhooks",
246 "IPython.lib.editorhooks",
247 "IPython.lib.guisupport",
247 "IPython.lib.guisupport",
248 "IPython.lib.latextools",
248 "IPython.lib.latextools",
249 "IPython.lib.lexers",
249 "IPython.lib.lexers",
250 "IPython.lib.pretty",
250 "IPython.lib.pretty",
251 "IPython.paths",
251 "IPython.paths",
252 "IPython.sphinxext.ipython_console_highlighting",
252 "IPython.sphinxext.ipython_console_highlighting",
253 "IPython.terminal.debugger",
253 "IPython.terminal.debugger",
254 "IPython.terminal.embed",
254 "IPython.terminal.embed",
255 "IPython.terminal.interactiveshell",
255 "IPython.terminal.interactiveshell",
256 "IPython.terminal.magics",
256 "IPython.terminal.magics",
257 "IPython.terminal.prompts",
257 "IPython.terminal.prompts",
258 "IPython.terminal.pt_inputhooks",
258 "IPython.terminal.pt_inputhooks",
259 "IPython.terminal.pt_inputhooks.asyncio",
259 "IPython.terminal.pt_inputhooks.asyncio",
260 "IPython.terminal.pt_inputhooks.glut",
260 "IPython.terminal.pt_inputhooks.glut",
261 "IPython.terminal.pt_inputhooks.gtk",
261 "IPython.terminal.pt_inputhooks.gtk",
262 "IPython.terminal.pt_inputhooks.gtk3",
262 "IPython.terminal.pt_inputhooks.gtk3",
263 "IPython.terminal.pt_inputhooks.gtk4",
263 "IPython.terminal.pt_inputhooks.gtk4",
264 "IPython.terminal.pt_inputhooks.osx",
264 "IPython.terminal.pt_inputhooks.osx",
265 "IPython.terminal.pt_inputhooks.pyglet",
265 "IPython.terminal.pt_inputhooks.pyglet",
266 "IPython.terminal.pt_inputhooks.qt",
266 "IPython.terminal.pt_inputhooks.qt",
267 "IPython.terminal.pt_inputhooks.tk",
267 "IPython.terminal.pt_inputhooks.tk",
268 "IPython.terminal.pt_inputhooks.wx",
268 "IPython.terminal.pt_inputhooks.wx",
269 "IPython.terminal.ptutils",
269 "IPython.terminal.ptutils",
270 "IPython.terminal.shortcuts",
270 "IPython.terminal.shortcuts",
271 "IPython.terminal.shortcuts.auto_match",
271 "IPython.terminal.shortcuts.auto_match",
272 "IPython.terminal.shortcuts.auto_suggest",
272 "IPython.terminal.shortcuts.auto_suggest",
273 "IPython.terminal.shortcuts.filters",
273 "IPython.terminal.shortcuts.filters",
274 "IPython.utils._process_cli",
274 "IPython.utils._process_cli",
275 "IPython.utils._process_common",
275 "IPython.utils._process_common",
276 "IPython.utils._process_emscripten",
276 "IPython.utils._process_emscripten",
277 "IPython.utils._process_posix",
277 "IPython.utils._process_posix",
278 "IPython.utils.capture",
278 "IPython.utils.capture",
279 "IPython.utils.coloransi",
279 "IPython.utils.coloransi",
280 "IPython.utils.contexts",
280 "IPython.utils.contexts",
281 "IPython.utils.data",
281 "IPython.utils.data",
282 "IPython.utils.decorators",
282 "IPython.utils.decorators",
283 "IPython.utils.dir2",
283 "IPython.utils.dir2",
284 "IPython.utils.encoding",
284 "IPython.utils.encoding",
285 "IPython.utils.frame",
285 "IPython.utils.frame",
286 "IPython.utils.generics",
286 "IPython.utils.generics",
287 "IPython.utils.importstring",
287 "IPython.utils.importstring",
288 "IPython.utils.io",
288 "IPython.utils.io",
289 "IPython.utils.ipstruct",
289 "IPython.utils.ipstruct",
290 "IPython.utils.module_paths",
290 "IPython.utils.module_paths",
291 "IPython.utils.openpy",
291 "IPython.utils.openpy",
292 "IPython.utils.process",
292 "IPython.utils.process",
293 "IPython.utils.py3compat",
293 "IPython.utils.py3compat",
294 "IPython.utils.sentinel",
294 "IPython.utils.sentinel",
295 "IPython.utils.shimmodule",
296 "IPython.utils.strdispatch",
295 "IPython.utils.strdispatch",
297 "IPython.utils.sysinfo",
296 "IPython.utils.sysinfo",
298 "IPython.utils.syspathcontext",
297 "IPython.utils.syspathcontext",
299 "IPython.utils.tempdir",
298 "IPython.utils.tempdir",
300 "IPython.utils.terminal",
299 "IPython.utils.terminal",
301 "IPython.utils.timing",
300 "IPython.utils.timing",
302 "IPython.utils.tokenutil",
301 "IPython.utils.tokenutil",
303 "IPython.utils.ulinecache",
302 "IPython.utils.ulinecache",
304 "IPython.utils.version",
303 "IPython.utils.version",
305 "IPython.utils.wildcard",
304 "IPython.utils.wildcard",
306
305
307 ]
306 ]
308 disallow_untyped_defs = false
307 disallow_untyped_defs = false
309 ignore_errors = true
308 ignore_errors = true
310 ignore_missing_imports = true
309 ignore_missing_imports = true
311 disallow_untyped_calls = false
310 disallow_untyped_calls = false
312 disallow_incomplete_defs = false
311 disallow_incomplete_defs = false
313 check_untyped_defs = false
312 check_untyped_defs = false
314 disallow_untyped_decorators = false
313 disallow_untyped_decorators = false
315
314
316 [tool.pytest.ini_options]
315 [tool.pytest.ini_options]
317 addopts = [
316 addopts = [
318 "--durations=10",
317 "--durations=10",
319 "-pIPython.testing.plugin.pytest_ipdoctest",
318 "-pIPython.testing.plugin.pytest_ipdoctest",
320 "--ipdoctest-modules",
319 "--ipdoctest-modules",
321 "--ignore=docs",
320 "--ignore=docs",
322 "--ignore=examples",
321 "--ignore=examples",
323 "--ignore=htmlcov",
322 "--ignore=htmlcov",
324 "--ignore=ipython_kernel",
323 "--ignore=ipython_kernel",
325 "--ignore=ipython_parallel",
324 "--ignore=ipython_parallel",
326 "--ignore=results",
325 "--ignore=results",
327 "--ignore=tmp",
326 "--ignore=tmp",
328 "--ignore=tools",
327 "--ignore=tools",
329 "--ignore=traitlets",
328 "--ignore=traitlets",
330 "--ignore=IPython/core/tests/daft_extension",
329 "--ignore=IPython/core/tests/daft_extension",
331 "--ignore=IPython/sphinxext",
330 "--ignore=IPython/sphinxext",
332 "--ignore=IPython/terminal/pt_inputhooks",
331 "--ignore=IPython/terminal/pt_inputhooks",
333 "--ignore=IPython/__main__.py",
332 "--ignore=IPython/__main__.py",
334 "--ignore=IPython/external/qt_for_kernel.py",
333 "--ignore=IPython/external/qt_for_kernel.py",
335 "--ignore=IPython/html/widgets/widget_link.py",
334 "--ignore=IPython/html/widgets/widget_link.py",
336 "--ignore=IPython/html/widgets/widget_output.py",
335 "--ignore=IPython/html/widgets/widget_output.py",
337 "--ignore=IPython/terminal/console.py",
336 "--ignore=IPython/terminal/console.py",
338 "--ignore=IPython/utils/_process_cli.py",
337 "--ignore=IPython/utils/_process_cli.py",
339 "--ignore=IPython/utils/_process_posix.py",
338 "--ignore=IPython/utils/_process_posix.py",
340 "--ignore=IPython/utils/_process_win32.py",
339 "--ignore=IPython/utils/_process_win32.py",
341 "--ignore=IPython/utils/_process_win32_controller.py",
340 "--ignore=IPython/utils/_process_win32_controller.py",
342 "--ignore=IPython/utils/daemonize.py",
341 "--ignore=IPython/utils/daemonize.py",
343 "--ignore=IPython/utils/eventful.py",
342 "--ignore=IPython/utils/eventful.py",
344 "--ignore=IPython/kernel",
343 "--ignore=IPython/kernel",
345 "--ignore=IPython/consoleapp.py",
344 "--ignore=IPython/consoleapp.py",
346 "--ignore=IPython/lib/kernel.py",
345 "--ignore=IPython/lib/kernel.py",
347 "--ignore=IPython/utils/jsonutil.py",
346 "--ignore=IPython/utils/jsonutil.py",
348 "--ignore=IPython/utils/localinterfaces.py",
347 "--ignore=IPython/utils/localinterfaces.py",
349 "--ignore=IPython/utils/log.py",
348 "--ignore=IPython/utils/log.py",
350 "--ignore=IPython/utils/signatures.py",
349 "--ignore=IPython/utils/signatures.py",
351 "--ignore=IPython/utils/version.py"
350 "--ignore=IPython/utils/version.py"
352 ]
351 ]
353 doctest_optionflags = [
352 doctest_optionflags = [
354 "NORMALIZE_WHITESPACE",
353 "NORMALIZE_WHITESPACE",
355 "ELLIPSIS"
354 "ELLIPSIS"
356 ]
355 ]
357 ipdoctest_optionflags = [
356 ipdoctest_optionflags = [
358 "NORMALIZE_WHITESPACE",
357 "NORMALIZE_WHITESPACE",
359 "ELLIPSIS"
358 "ELLIPSIS"
360 ]
359 ]
361 asyncio_mode = "strict"
360 asyncio_mode = "strict"
362
361
363 [tool.pyright]
362 [tool.pyright]
364 pythonPlatform="All"
363 pythonPlatform="All"
365
364
366 [tool.setuptools]
365 [tool.setuptools]
367 zip-safe = false
366 zip-safe = false
368 platforms = ["Linux", "Mac OSX", "Windows"]
367 platforms = ["Linux", "Mac OSX", "Windows"]
369 license-files = ["LICENSE"]
368 license-files = ["LICENSE"]
370 include-package-data = false
369 include-package-data = false
371
370
372 [tool.setuptools.packages.find]
371 [tool.setuptools.packages.find]
373 exclude = ["setupext"]
372 exclude = ["setupext"]
374 namespaces = false
373 namespaces = false
375
374
376 [tool.setuptools.package-data]
375 [tool.setuptools.package-data]
377 "IPython" = ["py.typed"]
376 "IPython" = ["py.typed"]
378 "IPython.core" = ["profile/README*"]
377 "IPython.core" = ["profile/README*"]
379 "IPython.core.tests" = ["*.png", "*.jpg", "daft_extension/*.py"]
378 "IPython.core.tests" = ["*.png", "*.jpg", "daft_extension/*.py"]
380 "IPython.lib.tests" = ["*.wav"]
379 "IPython.lib.tests" = ["*.wav"]
381 "IPython.testing.plugin" = ["*.txt"]
380 "IPython.testing.plugin" = ["*.txt"]
382
381
383 [tool.setuptools.dynamic]
382 [tool.setuptools.dynamic]
384 version = {attr = "IPython.core.release.__version__"}
383 version = {attr = "IPython.core.release.__version__"}
385
384
386 [tool.coverage.run]
385 [tool.coverage.run]
387 omit = [
386 omit = [
388 # omit everything in /tmp as we run tempfile
387 # omit everything in /tmp as we run tempfile
389 "/tmp/*",
388 "/tmp/*",
390 ]
389 ]
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
General Comments 0
You need to be logged in to leave comments. Login now