This commit is contained in:
Sven Riwoldt
2024-04-01 20:30:24 +02:00
parent fd333f3514
commit c7bc862c6f
6804 changed files with 1065135 additions and 0 deletions

View File

@@ -0,0 +1,130 @@
Metadata-Version: 2.1
Name: spyder-kernels
Version: 2.5.1
Summary: Jupyter kernels for Spyder's console
Home-page: https://github.com/spyder-ide/spyder-kernels
Download-URL: https://www.spyder-ide.org/#fh5co-download
Author: Spyder Development Team
Author-email: spyderlib@googlegroups.com
License: MIT
Keywords: spyder jupyter kernel ipython console
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Jupyter
Classifier: Framework :: IPython
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Interpreters
Description-Content-Type: text/markdown
License-File: LICENSE.txt
License-File: AUTHORS.txt
Requires-Dist: cloudpickle
Requires-Dist: wurlitzer >=1.0.3 ; platform_system != "Windows"
Requires-Dist: decorator <5 ; python_version < "3"
Requires-Dist: backports.functools-lru-cache ; python_version < "3"
Requires-Dist: ipykernel <5,>=4.5 ; python_version < "3"
Requires-Dist: ipython <6 ; python_version < "3"
Requires-Dist: jupyter-client <6,>=5.3.4 ; python_version < "3"
Requires-Dist: pyzmq <20,>=17 ; python_version < "3"
Requires-Dist: ipykernel <6.17,>=6.16.1 ; python_version < "3.8"
Requires-Dist: ipython <8,>=7.31.1 ; python_version < "3.8"
Requires-Dist: ipython <8.13,>=8.12.2 ; python_version == "3.8"
Requires-Dist: ipython !=8.17.1,<9,>=8.13.0 ; python_version > "3.8"
Requires-Dist: jupyter-client <9,>=7.4.9 ; python_version >= "3"
Requires-Dist: pyzmq >=24.0.0 ; python_version >= "3"
Requires-Dist: ipykernel <7,>=6.29.3 ; python_version >= "3.8"
Provides-Extra: test
Requires-Dist: cython ; extra == 'test'
Requires-Dist: dask[distributed] ; extra == 'test'
Requires-Dist: flaky ; extra == 'test'
Requires-Dist: matplotlib ; extra == 'test'
Requires-Dist: mock ; extra == 'test'
Requires-Dist: numpy ; extra == 'test'
Requires-Dist: pandas ; extra == 'test'
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: pytest-cov ; extra == 'test'
Requires-Dist: scipy ; extra == 'test'
Requires-Dist: xarray ; extra == 'test'
Requires-Dist: pillow ; extra == 'test'
Requires-Dist: django ; extra == 'test'
# Jupyter kernels for the Spyder console
[![Windows status](https://github.com/spyder-ide/spyder-kernels/workflows/Windows%20tests/badge.svg)](https://github.com/spyder-ide/spyder-kernels/actions?query=workflow%3A%22Windows+tests%22)
[![Linux status](https://github.com/spyder-ide/spyder-kernels/workflows/Linux%20tests/badge.svg)](https://github.com/spyder-ide/spyder-kernels/actions?query=workflow%3A%22Linux+tests%22)
[![Macos status](https://github.com/spyder-ide/spyder-kernels/workflows/Macos%20tests/badge.svg)](https://github.com/spyder-ide/spyder-kernels/actions?query=workflow%3A%22Macos+tests%22)
[![codecov](https://codecov.io/gh/spyder-ide/spyder-kernels/branch/master/graph/badge.svg)](https://codecov.io/gh/spyder-ide/spyder-kernels/branch/master)
Package that provides Jupyter kernels for use with the consoles of Spyder, the
Scientific Python Development Environment.
These kernels can launched either through Spyder itself or in an independent
Python session, and allow for interactive or file-based execution of Python
code inside Spyder.
To learn about creating, connecting to and using these kernels with the Spyder
console, please read our [documentation](https://docs.spyder-ide.org/current/panes/ipythonconsole.html).
For advice on managing packages and environments with `spyder-kernels`, please read this
[FAQ](http://docs.spyder-ide.org/current/faq.html#using-existing-environment) in our docs.
## Installation
To install this package, you can use either the ``pip`` or ``conda`` package
managers, as follows:
Using conda (the recommended way!):
```
conda install spyder-kernels
```
Using pip:
```
pip install spyder-kernels
```
## Dependencies
This project depends on:
* [ipykernel](https://github.com/ipython/ipykernel/)
* [cloudpickle](https://github.com/cloudpipe/cloudpickle)
* [wurlitzer](https://github.com/minrk/wurlitzer) (only on Linux and macOS).
## Changelog
Visit our [CHANGELOG](CHANGELOG.md) file to know more about our new features
and improvements.
## Development and contribution
To start contributing to this project you can execute
```
pip install -e .
```
in your git clone and then test your changes in Spyder. We follow PEP8 and
PEP257 style guidelines.
## Sponsors
Spyder and its subprojects are funded thanks to the generous support of
[![Quansight](https://user-images.githubusercontent.com/16781833/142477716-53152d43-99a0-470c-a70b-c04bbfa97dd4.png)](https://www.quansight.com/)[![Numfocus](https://i2.wp.com/numfocus.org/wp-content/uploads/2017/07/NumFocus_LRG.png?fit=320%2C148&ssl=1)](https://numfocus.org/)
and the donations we have received from our users around the world through [Open Collective](https://opencollective.com/spyder/):
[![Sponsors](https://opencollective.com/spyder/sponsors.svg)](https://opencollective.com/spyder#support)