1Metadata-Version: 2.1
2Name: ipykernel
3Version: 6.6.0
4Summary: IPython Kernel for Jupyter
5Home-page: https://ipython.org
6Author: IPython Development Team
7Author-email: ipython-dev@scipy.org
8License: BSD
9Keywords: Interactive,Interpreter,Shell,Web
10Platform: Linux
11Platform: Mac OS X
12Platform: Windows
13Classifier: Intended Audience :: Developers
14Classifier: Intended Audience :: System Administrators
15Classifier: Intended Audience :: Science/Research
16Classifier: License :: OSI Approved :: BSD License
17Classifier: Programming Language :: Python
18Classifier: Programming Language :: Python :: 3
19Classifier: Programming Language :: Python :: 3.7
20Classifier: Programming Language :: Python :: 3.8
21Classifier: Programming Language :: Python :: 3.9
22Requires-Python: >=3.7
23Description-Content-Type: text/markdown
24Provides-Extra: test
25License-File: COPYING.md
26
27# IPython Kernel for Jupyter
28
29This package provides the IPython kernel for Jupyter.
30
31## Installation from source
32
331. `git clone`
342. `cd ipykernel`
353. `pip install -e ".[test]"`
36
37After that, all normal `ipython` commands will use this newly-installed version of the kernel.
38
39## Running tests
40
41Follow the instructions from `Installation from source`.
42
43and then from the root directory
44
45```bash
46pytest ipykernel
47```
48
49## Running tests with coverage
50
51Follow the instructions from `Installation from source`.
52
53and then from the root directory
54
55```bash
56pytest ipykernel -vv -s --cov ipykernel --cov-branch --cov-report term-missing:skip-covered --durations 10
57```
58
59
60