|
2 | 2 | from setuptools import setup, find_packages
|
3 | 3 |
|
4 | 4 | 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: |
6 | 6 | long_description = fh.read()
|
7 | 7 |
|
| 8 | +version='0.2.1' |
8 | 9 | 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(), |
12 | 13 |
|
13 |
| - |
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), |
18 | 16 |
|
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', |
25 | 30 | ],
|
26 | 31 |
|
27 |
| - entry_points={ |
| 32 | + entry_points = { |
28 | 33 | 'jupyter_serverproxy_servers': [
|
29 | 34 | 'xprahtml5 = jupyter_xprahtml5:setup_xprahtml5',
|
30 | 35 | ]
|
31 | 36 | },
|
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 |
35 | 40 | )
|
0 commit comments