forked from jupyterhub/jupyter-remote-desktop-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (40 loc) · 1.31 KB
/
setup.py
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
from setuptools import find_packages, setup
with open("README.md") as f:
readme = f.read()
setup(
name="jupyter-remote-desktop-proxy",
packages=find_packages(),
version='1.1.0',
author="Jupyter Development Team",
author_email="[email protected]",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
description="Run a desktop environments on Jupyter",
entry_points={
'jupyter_serverproxy_servers': [
'desktop = jupyter_remote_desktop_proxy:setup_desktop',
]
},
install_requires=[
'jupyter-server-proxy>=1.4.0',
],
include_package_data=True,
keywords=["Interactive", "Desktop", "Jupyter"],
license="BSD",
long_description=readme,
long_description_content_type="text/markdown",
platforms="Linux",
project_urls={
"Source": "https://github.com/jupyterhub/jupyter-remote-desktop-proxy/",
"Tracker": "https://github.com/jupyterhub/jupyter-remote-desktop-proxy/issues",
},
python_requires=">=3.6",
url="https://jupyter.org",
zip_safe=False,
)