Skip to content

Commit 581a290

Browse files
committed
update
1 parent c327d19 commit 581a290

File tree

1 file changed

+24
-19
lines changed

1 file changed

+24
-19
lines changed

setup.py

Lines changed: 24 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,34 +2,39 @@
22
from setuptools import setup, find_packages
33

44
HERE = path.abspath(path.dirname(__file__))
5-
with open(path.join(HERE, "README.md"), "r", encoding="utf-8") as fh:
5+
with open(path.join(HERE, 'README.md'), 'r', encoding = 'utf-8') as fh:
66
long_description = fh.read()
77

8+
version='0.2.1'
89
setup(
9-
name="jupyter-xprahtml5-proxy",
10-
packages=find_packages(),
11-
version='0.2.1',
10+
name = 'jupyter-xprahtml5-proxy',
11+
version = version,
12+
packages = find_packages(),
1213

13-
author_email="[email protected]",
14-
description="Xpra for JupyterLab",
15-
long_description=long_description,
16-
long_description_content_type="text/markdown",
17-
url="https://github.com/FZJ_JSC/jupyter-xprahtml5-proxy",
14+
url = 'https://github.com/FZJ_JSC/jupyter-xprahtml5-proxy',
15+
download_url = 'https://github.com/FZJ-JSC/jupyter-xprahtml5-proxy/archive/v{0}.tar.gz'.format(version),
1816

19-
keywords=["jupyter", "xpra", "jupyterhub", "jupyter-server-proxy"],
20-
classifiers=[
21-
"Programming Language :: Python :: 3",
22-
"License :: OSI Approved :: BSD License",
23-
"Operating System :: OS Independent",
24-
"Framework :: Jupyter",
17+
author = 'Jens Henrik Goebbert',
18+
author_email = '[email protected]',
19+
20+
description = 'Xpra for JupyterLab',
21+
long_description = long_description,
22+
long_description_content_type = 'text/markdown',
23+
24+
keywords = ['jupyter', 'xpra', 'jupyterhub', 'jupyter-server-proxy'],
25+
classifiers = [
26+
'Programming Language :: Python :: 3',
27+
'License :: OSI Approved :: BSD License',
28+
'Operating System :: OS Independent',
29+
'Framework :: Jupyter',
2530
],
2631

27-
entry_points={
32+
entry_points = {
2833
'jupyter_serverproxy_servers': [
2934
'xprahtml5 = jupyter_xprahtml5:setup_xprahtml5',
3035
]
3136
},
32-
install_requires=['jupyter-server-proxy>=1.4.0'],
33-
include_package_data=True,
34-
zip_safe=False
37+
install_requires = ['jupyter-server-proxy>=1.4.0'],
38+
include_package_data = True,
39+
zip_safe = False
3540
)

0 commit comments

Comments
 (0)