1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='jupyterlab-server',
version='%%PORTVERSION%%',
description='A set of server components for JupyterLab and JupyterLab like applications.',
long_description='# jupyterlab server\n\n[](https://codecov.io/gh/jupyterlab/jupyterlab_server)\n[](https://github.com/jupyterlab/jupyterlab_server/actions?query=branch%3Amaster+workflow%3A%22Tests%22)\n[](http://jupyterlab_server.readthedocs.io/en/stable/)\n\n## Motivation\n\nJupyterLab Server sits between JupyterLab and Jupyter Server, and provides a\nset of REST API handlers and utilities that are used by JupyterLab. It is a separate project in order to\naccommodate creating JupyterLab-like applications from a more limited scope.\n\n## Install\n\n`pip install jupyterlab_server`\n\nTo include optional `openapi` dependencies, use:\n\n`pip install jupyterlab_server[openapi]`\n\nTo include optional `pytest_plugin` dependencies, use:\n\n`pip install jupyterlab_server[test]`\n\n## Usage\n\nSee 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).\n\n## Extending the Application\n\nSubclass the `LabServerApp` and provide additional traits and handlers as appropriate for your application.\n\n## Contribution\n\nPlease see `CONTRIBUTING.md` for details.\n',
author_email='Jupyter Development Team <jupyter@googlegroups.com>',
classifiers=[
'Framework :: Jupyter',
'Framework :: Jupyter :: JupyterLab',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
install_requires=[
'babel',
'importlib-metadata>=4.8.1; python_version < "3.10"',
'jinja2>=3.0.3',
'json5',
'jsonschema>=3.0.1',
'jupyter-server<3,>=1.8',
'packaging',
'requests',
],
extras_require={
'docs': [
'autodoc-traits',
'docutils<0.19',
'pydata_sphinx_theme',
'sphinx',
'sphinx-copybutton',
'sphinxcontrib-openapi',
'myst-parser',
'mistune<1',
'jinja2<3.1.0'
],
'openapi': [
'openapi-core>=0.14.2',
'ruamel-yaml',
],
'test': [
'codecov',
'ipykernel',
'jupyter-server[test]',
'openapi_core~=0.14.2',
'openapi-spec-validator<0.5',
'pytest>=7.0',
'pytest-console-scripts',
'pytest-cov',
'requests_mock',
'ruamel-yaml',
'strict-rfc3339',
],
},
packages=[
'jupyterlab_server',
],
)
|