METADATA 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. Metadata-Version: 2.3
  2. Name: nbformat
  3. Version: 5.10.4
  4. Summary: The Jupyter Notebook format
  5. Project-URL: Homepage, https://jupyter.org
  6. Project-URL: Changelog, https://github.com/jupyter/nbformat/blob/main/CHANGELOG.md
  7. Project-URL: Documentation, https://nbformat.readthedocs.io/
  8. Project-URL: Repository, https://github.com/jupyter/nbformat.git
  9. Author-email: Jupyter Development Team <jupyter@googlegroups.com>
  10. License: BSD 3-Clause License
  11. - Copyright (c) 2001-2015, IPython Development Team
  12. - Copyright (c) 2015-, Jupyter Development Team
  13. All rights reserved.
  14. Redistribution and use in source and binary forms, with or without
  15. modification, are permitted provided that the following conditions are met:
  16. 1. Redistributions of source code must retain the above copyright notice, this
  17. list of conditions and the following disclaimer.
  18. 2. Redistributions in binary form must reproduce the above copyright notice,
  19. this list of conditions and the following disclaimer in the documentation
  20. and/or other materials provided with the distribution.
  21. 3. Neither the name of the copyright holder nor the names of its
  22. contributors may be used to endorse or promote products derived from
  23. this software without specific prior written permission.
  24. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  25. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  26. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  27. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  28. FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  29. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  30. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  31. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  32. OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  33. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  34. License-File: LICENSE
  35. Keywords: Interactive,Interpreter,Shell,Web
  36. Classifier: Intended Audience :: Developers
  37. Classifier: Intended Audience :: Science/Research
  38. Classifier: Intended Audience :: System Administrators
  39. Classifier: License :: OSI Approved :: BSD License
  40. Classifier: Programming Language :: Python
  41. Classifier: Programming Language :: Python :: 3
  42. Classifier: Programming Language :: Python :: 3.8
  43. Classifier: Programming Language :: Python :: 3.9
  44. Classifier: Programming Language :: Python :: 3.10
  45. Classifier: Programming Language :: Python :: 3.11
  46. Classifier: Programming Language :: Python :: 3.12
  47. Requires-Python: >=3.8
  48. Requires-Dist: fastjsonschema>=2.15
  49. Requires-Dist: jsonschema>=2.6
  50. Requires-Dist: jupyter-core!=5.0.*,>=4.12
  51. Requires-Dist: traitlets>=5.1
  52. Provides-Extra: docs
  53. Requires-Dist: myst-parser; extra == 'docs'
  54. Requires-Dist: pydata-sphinx-theme; extra == 'docs'
  55. Requires-Dist: sphinx; extra == 'docs'
  56. Requires-Dist: sphinxcontrib-github-alt; extra == 'docs'
  57. Requires-Dist: sphinxcontrib-spelling; extra == 'docs'
  58. Provides-Extra: test
  59. Requires-Dist: pep440; extra == 'test'
  60. Requires-Dist: pre-commit; extra == 'test'
  61. Requires-Dist: pytest; extra == 'test'
  62. Requires-Dist: testpath; extra == 'test'
  63. Description-Content-Type: text/plain
  64. This package contains the base implementation of the Jupyter Notebook format,
  65. and Python APIs for working with notebooks.