METADATA 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. Metadata-Version: 2.4
  2. Name: jupyterlab_server
  3. Version: 2.28.0
  4. Summary: A set of server components for JupyterLab and JupyterLab like applications.
  5. Project-URL: Homepage, https://jupyterlab-server.readthedocs.io
  6. Project-URL: Documentation, https://jupyterlab-server.readthedocs.io
  7. Project-URL: Funding, https://numfocus.org/donate-to-jupyter
  8. Project-URL: Source, https://github.com/jupyterlab/jupyterlab_server
  9. Project-URL: Tracker, https://github.com/jupyterlab/jupyterlab_server/issues
  10. Author-email: Jupyter Development Team <jupyter@googlegroups.com>
  11. License: Copyright (c) 2015-2017, Project Jupyter Contributors
  12. All rights reserved.
  13. Redistribution and use in source and binary forms, with or without
  14. modification, are permitted provided that the following conditions are met:
  15. 1. Redistributions of source code must retain the above copyright notice, this
  16. list of conditions and the following disclaimer.
  17. 2. Redistributions in binary form must reproduce the above copyright notice,
  18. this list of conditions and the following disclaimer in the documentation
  19. and/or other materials provided with the distribution.
  20. 3. Neither the name of the copyright holder nor the names of its
  21. contributors may be used to endorse or promote products derived from
  22. this software without specific prior written permission.
  23. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  24. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  25. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  26. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  27. FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  28. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  29. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  30. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  31. OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  32. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  33. License-File: LICENSE
  34. Keywords: jupyter,jupyterlab
  35. Classifier: Framework :: Jupyter
  36. Classifier: Framework :: Jupyter :: JupyterLab
  37. Classifier: Intended Audience :: Developers
  38. Classifier: Intended Audience :: Science/Research
  39. Classifier: Intended Audience :: System Administrators
  40. Classifier: License :: OSI Approved :: BSD License
  41. Classifier: Programming Language :: Python
  42. Classifier: Programming Language :: Python :: 3 :: Only
  43. Classifier: Programming Language :: Python :: 3.8
  44. Classifier: Programming Language :: Python :: 3.9
  45. Classifier: Programming Language :: Python :: 3.10
  46. Classifier: Programming Language :: Python :: 3.11
  47. Classifier: Programming Language :: Python :: 3.12
  48. Classifier: Typing :: Typed
  49. Requires-Python: >=3.8
  50. Requires-Dist: babel>=2.10
  51. Requires-Dist: importlib-metadata>=4.8.3; python_version < '3.10'
  52. Requires-Dist: jinja2>=3.0.3
  53. Requires-Dist: json5>=0.9.0
  54. Requires-Dist: jsonschema>=4.18.0
  55. Requires-Dist: jupyter-server<3,>=1.21
  56. Requires-Dist: packaging>=21.3
  57. Requires-Dist: requests>=2.31
  58. Provides-Extra: docs
  59. Requires-Dist: autodoc-traits; extra == 'docs'
  60. Requires-Dist: jinja2<3.2.0; extra == 'docs'
  61. Requires-Dist: mistune<4; extra == 'docs'
  62. Requires-Dist: myst-parser; extra == 'docs'
  63. Requires-Dist: pydata-sphinx-theme; extra == 'docs'
  64. Requires-Dist: sphinx; extra == 'docs'
  65. Requires-Dist: sphinx-copybutton; extra == 'docs'
  66. Requires-Dist: sphinxcontrib-openapi>0.8; extra == 'docs'
  67. Provides-Extra: openapi
  68. Requires-Dist: openapi-core~=0.18.0; extra == 'openapi'
  69. Requires-Dist: ruamel-yaml; extra == 'openapi'
  70. Provides-Extra: test
  71. Requires-Dist: hatch; extra == 'test'
  72. Requires-Dist: ipykernel; extra == 'test'
  73. Requires-Dist: openapi-core~=0.18.0; extra == 'test'
  74. Requires-Dist: openapi-spec-validator<0.8.0,>=0.6.0; extra == 'test'
  75. Requires-Dist: pytest-console-scripts; extra == 'test'
  76. Requires-Dist: pytest-cov; extra == 'test'
  77. Requires-Dist: pytest-jupyter[server]>=0.6.2; extra == 'test'
  78. Requires-Dist: pytest-timeout; extra == 'test'
  79. Requires-Dist: pytest<8,>=7.0; extra == 'test'
  80. Requires-Dist: requests-mock; extra == 'test'
  81. Requires-Dist: ruamel-yaml; extra == 'test'
  82. Requires-Dist: sphinxcontrib-spelling; extra == 'test'
  83. Requires-Dist: strict-rfc3339; extra == 'test'
  84. Requires-Dist: werkzeug; extra == 'test'
  85. Description-Content-Type: text/markdown
  86. # jupyterlab server
  87. [![Build Status](https://github.com/jupyterlab/jupyterlab_server/workflows/Tests/badge.svg?branch=master)](https://github.com/jupyterlab/jupyterlab_server/actions?query=branch%3Amaster+workflow%3A%22Tests%22)
  88. [![Documentation Status](https://readthedocs.org/projects/jupyterlab-server/badge/?version=stable)](http://jupyterlab-server.readthedocs.io/en/stable/)
  89. ## Motivation
  90. JupyterLab Server sits between JupyterLab and Jupyter Server, and provides a
  91. set of REST API handlers and utilities that are used by JupyterLab. It is a separate project in order to
  92. accommodate creating JupyterLab-like applications from a more limited scope.
  93. ## Install
  94. `pip install jupyterlab_server`
  95. To include optional `openapi` dependencies, use:
  96. `pip install jupyterlab_server[openapi]`
  97. To include optional `pytest_plugin` dependencies, use:
  98. `pip install jupyterlab_server[test]`
  99. ## Usage
  100. See the full documentation for [API docs](https://jupyterlab-server.readthedocs.io/en/stable/api/index.html) and [REST endpoint descriptions](https://jupyterlab-server.readthedocs.io/en/stable/api/rest.html).
  101. ## Extending the Application
  102. Subclass the `LabServerApp` and provide additional traits and handlers as appropriate for your application.
  103. ## Contribution
  104. Please see `CONTRIBUTING.md` for details.