##// END OF EJS Templates
Remove use of appnope...
Zach Borboa -
Show More
@@ -1,117 +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 29 python_requires = >=3.9
30 30 zip_safe = False
31 31 install_requires =
32 appnope; sys_platform == "darwin"
33 32 colorama; sys_platform == "win32"
34 33 decorator
35 34 exceptiongroup; python_version<'3.11'
36 35 jedi>=0.16
37 36 matplotlib-inline
38 37 pexpect>4.3; sys_platform != "win32"
39 38 prompt_toolkit>=3.0.30,<3.1.0,!=3.0.37
40 39 pygments>=2.4.0
41 40 stack_data
42 41 traitlets>=5
43 42 typing_extensions ; python_version<'3.10'
44 43
45 44 [options.extras_require]
46 45 black =
47 46 black
48 47 doc =
49 48 ipykernel
50 49 setuptools>=18.5
51 50 sphinx>=1.3
52 51 sphinx-rtd-theme
53 52 docrepr
54 53 matplotlib
55 54 stack_data
56 55 pytest<7
57 56 typing_extensions
58 57 exceptiongroup
59 58 %(test)s
60 59 kernel =
61 60 ipykernel
62 61 nbconvert =
63 62 nbconvert
64 63 nbformat =
65 64 nbformat
66 65 notebook =
67 66 ipywidgets
68 67 notebook
69 68 parallel =
70 69 ipyparallel
71 70 qtconsole =
72 71 qtconsole
73 72 terminal =
74 73 test =
75 74 pytest<7.1
76 75 pytest-asyncio<0.22
77 76 testpath
78 77 pickleshare
79 78 test_extra =
80 79 %(test)s
81 80 curio
82 81 matplotlib!=3.2.0
83 82 nbformat
84 83 numpy>=1.22
85 84 pandas
86 85 trio
87 86 all =
88 87 %(black)s
89 88 %(doc)s
90 89 %(kernel)s
91 90 %(nbconvert)s
92 91 %(nbformat)s
93 92 %(notebook)s
94 93 %(parallel)s
95 94 %(qtconsole)s
96 95 %(terminal)s
97 96 %(test_extra)s
98 97 %(test)s
99 98
100 99 [options.packages.find]
101 100 exclude =
102 101 setupext
103 102
104 103 [options.package_data]
105 104 IPython = py.typed
106 105 IPython.core = profile/README*
107 106 IPython.core.tests = *.png, *.jpg, daft_extension/*.py
108 107 IPython.lib.tests = *.wav
109 108 IPython.testing.plugin = *.txt
110 109
111 110 [velin]
112 111 ignore_patterns =
113 112 IPython/core/tests
114 113 IPython/testing
115 114
116 115 [tool.black]
117 116 exclude = 'timing\.py'
General Comments 0
You need to be logged in to leave comments. Login now