Make it easy to install the tools to build the docs.

This commit is contained in:
Simon Forman 2020-04-25 19:12:25 -07:00
parent 035f8108f0
commit f13d572304
2 changed files with 13 additions and 1 deletions

5
README
View File

@ -82,6 +82,11 @@ a makefile that uses nbconvert to generate ReST files from some of the
notebooks, copies those to the sphinx source dir, then builds the HTML
output using sphinx.
Get the dependencies for (re)building the docs:
pip install Thun[build-docs]
make docs
§.4 Basics of Joy

View File

@ -47,5 +47,12 @@ setup(
install_requires=[
'dulwich',
'future',
]
],
extras_require={
"build-docs": [
"sphinx",
"ipython",
"nbconvert",
],
}
)