##// END OF EJS Templates
Limit supported prompt-toolkit versions to 3.0.2-3.1.0...
Blazej Michalik -
Show More
@@ -1,115 +1,115 b''
1 [metadata]
1 [metadata]
2 name = ipython
2 name = ipython
3 version = attr: IPython.core.release.__version__
3 version = attr: IPython.core.release.__version__
4 url = https://ipython.org
4 url = https://ipython.org
5 description = IPython: Productive Interactive Computing
5 description = IPython: Productive Interactive Computing
6 long_description_content_type = text/x-rst
6 long_description_content_type = text/x-rst
7 long_description = file: long_description.rst
7 long_description = file: long_description.rst
8 license_file = LICENSE
8 license_file = LICENSE
9 project_urls =
9 project_urls =
10 Documentation = https://ipython.readthedocs.io/
10 Documentation = https://ipython.readthedocs.io/
11 Funding = https://numfocus.org/
11 Funding = https://numfocus.org/
12 Source = https://github.com/ipython/ipython
12 Source = https://github.com/ipython/ipython
13 Tracker = https://github.com/ipython/ipython/issues
13 Tracker = https://github.com/ipython/ipython/issues
14 keywords = Interactive, Interpreter, Shell, Embedding
14 keywords = Interactive, Interpreter, Shell, Embedding
15 platforms = Linux, Mac OSX, Windows
15 platforms = Linux, Mac OSX, Windows
16 classifiers =
16 classifiers =
17 Framework :: IPython
17 Framework :: IPython
18 Framework :: Jupyter
18 Framework :: Jupyter
19 Intended Audience :: Developers
19 Intended Audience :: Developers
20 Intended Audience :: Science/Research
20 Intended Audience :: Science/Research
21 License :: OSI Approved :: BSD License
21 License :: OSI Approved :: BSD License
22 Programming Language :: Python
22 Programming Language :: Python
23 Programming Language :: Python :: 3
23 Programming Language :: Python :: 3
24 Programming Language :: Python :: 3 :: Only
24 Programming Language :: Python :: 3 :: Only
25 Topic :: System :: Shells
25 Topic :: System :: Shells
26
26
27 [options]
27 [options]
28 packages = find:
28 packages = find:
29 python_requires = >=3.8
29 python_requires = >=3.8
30 zip_safe = False
30 zip_safe = False
31 install_requires =
31 install_requires =
32 appnope; sys_platform == "darwin"
32 appnope; sys_platform == "darwin"
33 backcall
33 backcall
34 colorama; sys_platform == "win32"
34 colorama; sys_platform == "win32"
35 decorator
35 decorator
36 jedi>=0.16
36 jedi>=0.16
37 matplotlib-inline
37 matplotlib-inline
38 pexpect>4.3; sys_platform != "win32"
38 pexpect>4.3; sys_platform != "win32"
39 pickleshare
39 pickleshare
40 prompt_toolkit>=2.0.0,<3.1.0,!=3.0.0,!=3.0.1
40 prompt_toolkit>3.0.1,<3.1.0
41 pygments>=2.4.0
41 pygments>=2.4.0
42 setuptools>=18.5
42 setuptools>=18.5
43 stack_data
43 stack_data
44 traitlets>=5
44 traitlets>=5
45
45
46 [options.extras_require]
46 [options.extras_require]
47 black =
47 black =
48 black
48 black
49 doc =
49 doc =
50 Sphinx>=1.3
50 Sphinx>=1.3
51 kernel =
51 kernel =
52 ipykernel
52 ipykernel
53 nbconvert =
53 nbconvert =
54 nbconvert
54 nbconvert
55 nbformat =
55 nbformat =
56 nbformat
56 nbformat
57 notebook =
57 notebook =
58 ipywidgets
58 ipywidgets
59 notebook
59 notebook
60 parallel =
60 parallel =
61 ipyparallel
61 ipyparallel
62 qtconsole =
62 qtconsole =
63 qtconsole
63 qtconsole
64 terminal =
64 terminal =
65 test =
65 test =
66 pytest<7.1
66 pytest<7.1
67 pytest-asyncio
67 pytest-asyncio
68 testpath
68 testpath
69 test_extra =
69 test_extra =
70 %(test)s
70 %(test)s
71 curio
71 curio
72 matplotlib!=3.2.0
72 matplotlib!=3.2.0
73 nbformat
73 nbformat
74 numpy>=1.19
74 numpy>=1.19
75 pandas
75 pandas
76 trio
76 trio
77 all =
77 all =
78 %(black)s
78 %(black)s
79 %(doc)s
79 %(doc)s
80 %(kernel)s
80 %(kernel)s
81 %(nbconvert)s
81 %(nbconvert)s
82 %(nbformat)s
82 %(nbformat)s
83 %(notebook)s
83 %(notebook)s
84 %(parallel)s
84 %(parallel)s
85 %(qtconsole)s
85 %(qtconsole)s
86 %(terminal)s
86 %(terminal)s
87 %(test_extra)s
87 %(test_extra)s
88 %(test)s
88 %(test)s
89
89
90 [options.packages.find]
90 [options.packages.find]
91 exclude =
91 exclude =
92 setupext
92 setupext
93
93
94 [options.package_data]
94 [options.package_data]
95 IPython.core = profile/README*
95 IPython.core = profile/README*
96 IPython.core.tests = *.png, *.jpg, daft_extension/*.py
96 IPython.core.tests = *.png, *.jpg, daft_extension/*.py
97 IPython.lib.tests = *.wav
97 IPython.lib.tests = *.wav
98 IPython.testing.plugin = *.txt
98 IPython.testing.plugin = *.txt
99
99
100 [options.entry_points]
100 [options.entry_points]
101 console_scripts =
101 console_scripts =
102 ipython = IPython:start_ipython
102 ipython = IPython:start_ipython
103 ipython3 = IPython:start_ipython
103 ipython3 = IPython:start_ipython
104 pygments.lexers =
104 pygments.lexers =
105 ipythonconsole = IPython.lib.lexers:IPythonConsoleLexer
105 ipythonconsole = IPython.lib.lexers:IPythonConsoleLexer
106 ipython = IPython.lib.lexers:IPythonLexer
106 ipython = IPython.lib.lexers:IPythonLexer
107 ipython3 = IPython.lib.lexers:IPython3Lexer
107 ipython3 = IPython.lib.lexers:IPython3Lexer
108
108
109 [velin]
109 [velin]
110 ignore_patterns =
110 ignore_patterns =
111 IPython/core/tests
111 IPython/core/tests
112 IPython/testing
112 IPython/testing
113
113
114 [tool.black]
114 [tool.black]
115 exclude = 'timing\.py'
115 exclude = 'timing\.py'
General Comments 0
You need to be logged in to leave comments. Login now