Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
betatim committed Feb 5, 2020
1 parent ace3973 commit 606b9cb
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions setup.py
@@ -1,19 +1,31 @@
import setuptools


with open("README.md", encoding="utf8") as f:
readme = f.read()


setuptools.setup(
name="jupyter-vscode-proxy",
version="0.1",
url="https://github.com/betatim/vscode-binder",
author="Tim Head",
description="Jupyter extension to proxy VS Code",
license="BSD",
description="VS Code extension for Jupyter",
long_description=readme,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
keywords=["Jupyter"],
keywords=["Jupyter", "vscode", "vs code", "editor"],
classifiers=["Framework :: Jupyter"],
install_requires=[
#'jupyter-server-proxy'
'jupyter-server-proxy'
],
entry_points={
"jupyter_serverproxy_servers": ["vscode = jupyter_vscode_proxy:setup_vscode",]
},
package_data={"jupyter_vscode_proxy": ["icons/*"],},
package_data={"jupyter_vscode_proxy": ["icons/*"]},
project_urls={
"Source": "https://github.com/betatim/vscode-binder/",
"Tracker": "https://github.com/betatim/vscode-binder/issues",
},
)

0 comments on commit 606b9cb

Please sign in to comment.