##// END OF EJS Templates
Python Requires >=3.9 (#14054)...
Matthias Bussonnier -
r28274:77b56938 merge
parent child Browse files
Show More
@@ -1,116 +1,116 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 python_requires = >=3.8
29 python_requires = >=3.9
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 40 prompt_toolkit>=3.0.30,<3.1.0,!=3.0.37
41 41 pygments>=2.4.0
42 42 stack_data
43 43 traitlets>=5
44 44 typing_extensions ; python_version<'3.10'
45 45
46 46 [options.extras_require]
47 47 black =
48 48 black
49 49 doc =
50 50 ipykernel
51 51 setuptools>=18.5
52 52 sphinx>=1.3
53 53 sphinx-rtd-theme
54 54 docrepr
55 55 matplotlib
56 56 stack_data
57 57 pytest<7
58 58 typing_extensions
59 59 %(test)s
60 60 kernel =
61 61 ipykernel
62 62 nbconvert =
63 63 nbconvert
64 64 nbformat =
65 65 nbformat
66 66 notebook =
67 67 ipywidgets
68 68 notebook
69 69 parallel =
70 70 ipyparallel
71 71 qtconsole =
72 72 qtconsole
73 73 terminal =
74 74 test =
75 75 pytest<7.1
76 76 pytest-asyncio
77 77 testpath
78 78 test_extra =
79 79 %(test)s
80 80 curio
81 81 matplotlib!=3.2.0
82 82 nbformat
83 83 numpy>=1.21
84 84 pandas
85 85 trio
86 86 all =
87 87 %(black)s
88 88 %(doc)s
89 89 %(kernel)s
90 90 %(nbconvert)s
91 91 %(nbformat)s
92 92 %(notebook)s
93 93 %(parallel)s
94 94 %(qtconsole)s
95 95 %(terminal)s
96 96 %(test_extra)s
97 97 %(test)s
98 98
99 99 [options.packages.find]
100 100 exclude =
101 101 setupext
102 102
103 103 [options.package_data]
104 104 IPython = py.typed
105 105 IPython.core = profile/README*
106 106 IPython.core.tests = *.png, *.jpg, daft_extension/*.py
107 107 IPython.lib.tests = *.wav
108 108 IPython.testing.plugin = *.txt
109 109
110 110 [velin]
111 111 ignore_patterns =
112 112 IPython/core/tests
113 113 IPython/testing
114 114
115 115 [tool.black]
116 116 exclude = 'timing\.py'
General Comments 0
You need to be logged in to leave comments. Login now