We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 25bc9e1 + 18654dd commit e306c6dCopy full SHA for e306c6d
setup.py
@@ -8,12 +8,17 @@
8
with open(os.path.join(here, name, "_version.py")) as f:
9
exec(f.read(), {}, version_ns)
10
11
+with open(os.path.join(here, "README.md")) as f:
12
+ description = f.read()
13
+
14
setup(
15
name=name,
16
version=version_ns["__version__"],
17
author="Jupyter Development Team",
18
author_email="[email protected]",
19
description="Jupyter Sphinx Extensions",
20
+ long_description=description,
21
+ long_description_content_type='text/markdown',
22
url="https://github.com/jupyter/jupyter-sphinx/",
23
project_urls={
24
"Bug Tracker": "https://github.com/jupyter/jupyter-sphinx/issues/",
0 commit comments