-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
44 lines (37 loc) · 1.3 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
44
from os import path
from setuptools import setup, find_packages
HERE = path.abspath(path.dirname(__file__))
with open(path.join(HERE, 'README.md'), 'r', encoding = 'utf-8') as fh:
long_description = fh.read()
version='0.4.0'
setup(
name = 'jupyter-xprahtml5-proxy',
version = version,
packages = find_packages(),
url = 'https://github.com/FZJ-JSC/jupyter-xprahtml5-proxy',
download_url = 'https://github.com/FZJ-JSC/jupyter-xprahtml5-proxy/archive/v{0}.tar.gz'.format(version),
author = 'Jens Henrik Goebbert',
author_email = '[email protected]',
description = 'Xpra for JupyterLab',
long_description = long_description,
long_description_content_type = 'text/markdown',
keywords = ['jupyter', 'xpra', 'jupyterhub', 'jupyter-server-proxy'],
classifiers = [
'Programming Language :: Python :: 3',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Framework :: Jupyter',
],
entry_points = {
'jupyter_serverproxy_servers': [
'xprahtml5 = jupyter_xprahtml5_proxy:setup_xprahtml5',
]
},
python_requires = '>=3.6',
install_requires=[
'jupyter-server-proxy>=4.0.0',
'tornado>=6.3'
],
include_package_data = True,
zip_safe = False
)