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