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