From 73c3a202fdc116cd6dee36b4ca066f787e0bf641 Mon Sep 17 00:00:00 2001 From: Josh Barnes Date: Thu, 24 Nov 2016 12:24:17 +0000 Subject: [PATCH] setup.py fixes - update long description to refer to readthedocs - fix download_url, which was missing a / --- setup.py | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index 8cd7b71fb..7a043b73c 100755 --- a/setup.py +++ b/setup.py @@ -29,14 +29,19 @@ def main(): notebook. These extensions are mostly written in Javascript, and are loaded locally in the browser. -The jupyter-contrib repository -https://github.com/ipython-contrib/jupyter_contrib_nbextensions +Read +`the documentation `_ +for more information. + +The +`jupyter-contrib repository `_ is maintained independently by a group of users and developers, and is not officially related to the Jupyter development team. -The maturity of the provided extensions varies, please create an issue if you -encounter any problems. -""", +The maturity of the provided extensions varies, so please check +`the repository issues page `_ +if you encounter any problems, and create a new issue if needed! +""", # noqa version='0.2.2', author='ipython-contrib and jupyter-contrib developers', author_email='jupytercontrib@gmail.com', @@ -44,7 +49,7 @@ def main(): 'ipython-contrib/jupyter_contrib_nbextensions.git'), download_url=('https://github.com/' 'ipython-contrib/jupyter_contrib_nbextensions' - 'tarball/0.2.2'), + '/tarball/0.2.2'), keywords=['IPython', 'Jupyter', 'notebook'], license='BSD', platforms=['Any'],