##// END OF EJS Templates
Merge pull request #13834 from hristog/fix-history-browsing-bug...
Matthias Bussonnier -
r27893:4ea7a414 merge
parent child Browse files
Show More
@@ -1,120 +1,120 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>3.0.1,<3.1.0
40 prompt_toolkit>=3.0.11,<3.1.0
41 pygments>=2.4.0
41 pygments>=2.4.0
42 stack_data
42 stack_data
43 traitlets>=5
43 traitlets>=5
44
44
45 [options.extras_require]
45 [options.extras_require]
46 black =
46 black =
47 black
47 black
48 doc =
48 doc =
49 ipykernel
49 ipykernel
50 setuptools>=18.5
50 setuptools>=18.5
51 sphinx>=1.3
51 sphinx>=1.3
52 sphinx-rtd-theme
52 sphinx-rtd-theme
53 docrepr
53 docrepr
54 matplotlib
54 matplotlib
55 stack_data
55 stack_data
56 pytest<7
56 pytest<7
57 typing_extensions
57 typing_extensions
58 %(test)s
58 %(test)s
59 kernel =
59 kernel =
60 ipykernel
60 ipykernel
61 nbconvert =
61 nbconvert =
62 nbconvert
62 nbconvert
63 nbformat =
63 nbformat =
64 nbformat
64 nbformat
65 notebook =
65 notebook =
66 ipywidgets
66 ipywidgets
67 notebook
67 notebook
68 parallel =
68 parallel =
69 ipyparallel
69 ipyparallel
70 qtconsole =
70 qtconsole =
71 qtconsole
71 qtconsole
72 terminal =
72 terminal =
73 test =
73 test =
74 pytest<7.1
74 pytest<7.1
75 pytest-asyncio
75 pytest-asyncio
76 testpath
76 testpath
77 test_extra =
77 test_extra =
78 %(test)s
78 %(test)s
79 curio
79 curio
80 matplotlib!=3.2.0
80 matplotlib!=3.2.0
81 nbformat
81 nbformat
82 numpy>=1.20
82 numpy>=1.20
83 pandas
83 pandas
84 trio
84 trio
85 all =
85 all =
86 %(black)s
86 %(black)s
87 %(doc)s
87 %(doc)s
88 %(kernel)s
88 %(kernel)s
89 %(nbconvert)s
89 %(nbconvert)s
90 %(nbformat)s
90 %(nbformat)s
91 %(notebook)s
91 %(notebook)s
92 %(parallel)s
92 %(parallel)s
93 %(qtconsole)s
93 %(qtconsole)s
94 %(terminal)s
94 %(terminal)s
95 %(test_extra)s
95 %(test_extra)s
96 %(test)s
96 %(test)s
97
97
98 [options.packages.find]
98 [options.packages.find]
99 exclude =
99 exclude =
100 setupext
100 setupext
101
101
102 [options.package_data]
102 [options.package_data]
103 IPython.core = profile/README*
103 IPython.core = profile/README*
104 IPython.core.tests = *.png, *.jpg, daft_extension/*.py
104 IPython.core.tests = *.png, *.jpg, daft_extension/*.py
105 IPython.lib.tests = *.wav
105 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 pygments.lexers =
109 pygments.lexers =
110 ipythonconsole = IPython.lib.lexers:IPythonConsoleLexer
110 ipythonconsole = IPython.lib.lexers:IPythonConsoleLexer
111 ipython = IPython.lib.lexers:IPythonLexer
111 ipython = IPython.lib.lexers:IPythonLexer
112 ipython3 = IPython.lib.lexers:IPython3Lexer
112 ipython3 = IPython.lib.lexers:IPython3Lexer
113
113
114 [velin]
114 [velin]
115 ignore_patterns =
115 ignore_patterns =
116 IPython/core/tests
116 IPython/core/tests
117 IPython/testing
117 IPython/testing
118
118
119 [tool.black]
119 [tool.black]
120 exclude = 'timing\.py'
120 exclude = 'timing\.py'
General Comments 0
You need to be logged in to leave comments. Login now