Skip to content

Commit 606b9cb

Browse files
committed
Update setup.py
1 parent ace3973 commit 606b9cb

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

setup.py

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,31 @@
11
import setuptools
22

3+
4+
with open("README.md", encoding="utf8") as f:
5+
readme = f.read()
6+
7+
38
setuptools.setup(
49
name="jupyter-vscode-proxy",
510
version="0.1",
611
url="https://github.com/betatim/vscode-binder",
712
author="Tim Head",
8-
description="Jupyter extension to proxy VS Code",
13+
license="BSD",
14+
description="VS Code extension for Jupyter",
15+
long_description=readme,
16+
long_description_content_type="text/markdown",
917
packages=setuptools.find_packages(),
10-
keywords=["Jupyter"],
18+
keywords=["Jupyter", "vscode", "vs code", "editor"],
1119
classifiers=["Framework :: Jupyter"],
1220
install_requires=[
13-
#'jupyter-server-proxy'
21+
'jupyter-server-proxy'
1422
],
1523
entry_points={
1624
"jupyter_serverproxy_servers": ["vscode = jupyter_vscode_proxy:setup_vscode",]
1725
},
18-
package_data={"jupyter_vscode_proxy": ["icons/*"],},
26+
package_data={"jupyter_vscode_proxy": ["icons/*"]},
27+
project_urls={
28+
"Source": "https://github.com/betatim/vscode-binder/",
29+
"Tracker": "https://github.com/betatim/vscode-binder/issues",
30+
},
1931
)

0 commit comments

Comments
 (0)