Added long_description to setup.py

This commit is contained in:
Safia Abdalla 2015-09-09 16:49:29 -07:00 committed by Min RK
parent b05293408a
commit 9ed5848e82

View File

@ -66,6 +66,15 @@ pjoin = os.path.join
setup_args = dict(
name = name,
description = "A web-based notebook environment for interactive computing",
long_description = """
The Jupyter Notebook is a web application that allows you to create and
share documents that contain live code, equations, visualizations, and
explanatory text. The Notebook has support for multiple programming
languages, sharing, and interactive widgets.
Read `the documentation<https://jupyter-notebook.readthedocs.org>`_
for more information.
""",
version = version,
scripts = glob(pjoin('scripts', '*')),
packages = find_packages(),