##// END OF EJS Templates
setup.cfg: Remove setuptools from install_requires...
Matthias Köppe -
Show More
@@ -1,115 +1,114 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 40 prompt_toolkit>3.0.1,<3.1.0
41 41 pygments>=2.4.0
42 setuptools>=18.5
43 42 stack_data
44 43 traitlets>=5
45 44
46 45 [options.extras_require]
47 46 black =
48 47 black
49 48 doc =
50 49 Sphinx>=1.3
51 50 kernel =
52 51 ipykernel
53 52 nbconvert =
54 53 nbconvert
55 54 nbformat =
56 55 nbformat
57 56 notebook =
58 57 ipywidgets
59 58 notebook
60 59 parallel =
61 60 ipyparallel
62 61 qtconsole =
63 62 qtconsole
64 63 terminal =
65 64 test =
66 65 pytest<7.1
67 66 pytest-asyncio
68 67 testpath
69 68 test_extra =
70 69 %(test)s
71 70 curio
72 71 matplotlib!=3.2.0
73 72 nbformat
74 73 numpy>=1.19
75 74 pandas
76 75 trio
77 76 all =
78 77 %(black)s
79 78 %(doc)s
80 79 %(kernel)s
81 80 %(nbconvert)s
82 81 %(nbformat)s
83 82 %(notebook)s
84 83 %(parallel)s
85 84 %(qtconsole)s
86 85 %(terminal)s
87 86 %(test_extra)s
88 87 %(test)s
89 88
90 89 [options.packages.find]
91 90 exclude =
92 91 setupext
93 92
94 93 [options.package_data]
95 94 IPython.core = profile/README*
96 95 IPython.core.tests = *.png, *.jpg, daft_extension/*.py
97 96 IPython.lib.tests = *.wav
98 97 IPython.testing.plugin = *.txt
99 98
100 99 [options.entry_points]
101 100 console_scripts =
102 101 ipython = IPython:start_ipython
103 102 ipython3 = IPython:start_ipython
104 103 pygments.lexers =
105 104 ipythonconsole = IPython.lib.lexers:IPythonConsoleLexer
106 105 ipython = IPython.lib.lexers:IPythonLexer
107 106 ipython3 = IPython.lib.lexers:IPython3Lexer
108 107
109 108 [velin]
110 109 ignore_patterns =
111 110 IPython/core/tests
112 111 IPython/testing
113 112
114 113 [tool.black]
115 114 exclude = 'timing\.py'
General Comments 0
You need to be logged in to leave comments. Login now