Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda committed Jan 10, 2021
1 parent db22d9f commit 3452880
Showing 1 changed file with 17 additions and 9 deletions.
26 changes: 17 additions & 9 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,13 +234,15 @@
# Grouping the document tree into Texinfo files. List of tuples
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(
master_doc, project, project + ' Documentation', author, project,
'The lightweight PyTorch wrapper for ML researchers. Scale your models. Write less boilerplate.',
'Miscellaneous',
)
]
texinfo_documents = [(
master_doc,
project,
project + ' Documentation',
author,
project,
'The lightweight PyTorch wrapper for ML researchers. Scale your models. Write less boilerplate.',
'Miscellaneous',
)]

# -- Options for Epub output -------------------------------------------------

Expand Down Expand Up @@ -301,8 +303,14 @@ def run_apidoc(_):

for pkg in PACKAGES:
argv = [
'-e', '-o', apidoc_output_folder,
os.path.join(PATH_ROOT, pkg), '**/test_*', '--force', '--private', '--module-first',
'-e',
'-o',
apidoc_output_folder,
os.path.join(PATH_ROOT, pkg),
'**/test_*',
'--force',
'--private',
'--module-first',
]

apidoc.main(argv)
Expand Down

0 comments on commit 3452880

Please sign in to comment.