aboutsummaryrefslogtreecommitdiff
path: root/devel/py-jupyterlab-server/files/setup.py
blob: 79bce4a35bb0a97ea91a0e181cedf85db7222c82 (plain) (blame)
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
# -*- 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[![Coverage](https://codecov.io/gh/jupyterlab/jupyterlab_server/branch/master/graph/badge.svg)](https://codecov.io/gh/jupyterlab/jupyterlab_server)\n[![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)\n[![Documentation Status](https://readthedocs.org/projects/jupyterlab_server/badge/?version=stable)](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.10',
        'Programming Language :: Python :: 3.7',
        'Programming Language :: Python :: 3.8',
        'Programming Language :: Python :: 3.9',
    ],
    install_requires=[
        'babel',
        'importlib-metadata>=3.6; python_version < "3.10"',
        'jinja2>=3.0.1',
        'json5',
        'jsonschema>=3.0.1',
        'jupyter-server<2,>=1.8',
        'packaging',
        'requests',
    ],
    extras_require={
        '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-console-scripts',
            'pytest-cov',
            'pytest>=5.3.2',
            'ruamel-yaml',
            'strict-rfc3339',
        ],
    },
    packages=[
        'jupyterlab_server',
        'tests',
        'tests.translations.jupyterlab-language-pack-es_CO.jupyterlab_language_pack_es_CO',
        'tests.translations.jupyterlab-some-package.jupyterlab_some_package',
    ],
)