-
-
Notifications
You must be signed in to change notification settings - Fork 806
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs(sphinx): update conf #3682
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,7 +40,12 @@ | |
# ones. | ||
extensions = [ | ||
"sphinx.ext.autodoc", | ||
"sphinx.ext.autosummary", | ||
"sphinx.ext.coverage", | ||
"sphinx.ext.doctest", | ||
"sphinx.ext.graphviz", | ||
"sphinx.ext.intersphinx", | ||
"sphinx.ext.linkcode", | ||
] | ||
|
||
# Add any paths that contain templates here, relative to this directory. | ||
|
@@ -54,26 +59,14 @@ | |
# The master toctree document. | ||
master_doc = "toctree" | ||
|
||
# General information about the project. | ||
project = "Vyper" | ||
copyright = "2017-2020 CC-BY-4.0 Vyper Team" | ||
author = "Vyper Team (originally created by Vitalik Buterin)" | ||
td = datetime.now(tz=timezone.utc) | ||
project = u'Vyper' | ||
slug = re.sub(r'\W+', '-', project.lower()) | ||
author = u'Vyperlang Team & Contributors' | ||
# copyright = author | ||
copyright = "2017, 2020-2023 Vyperlang. Vyper Documentation is licensed under CC BY 4.0 " | ||
language = 'en' | ||
|
||
# The version info for the project you're documenting, acts as replacement for | ||
# |version| and |release|, also used in various other places throughout the | ||
# built documents. | ||
# | ||
# The short X.Y version. | ||
version = "" | ||
# The full version, including alpha/beta/rc tags. | ||
release = "" | ||
|
||
# The language for content autogenerated by Sphinx. Refer to documentation | ||
# for a list of supported languages. | ||
# | ||
# This is also used if you do content translation via gettext catalogs. | ||
# Usually you set "language" from the command line for these cases. | ||
language = "python" | ||
|
||
# List of patterns, relative to source directory, that match files and | ||
# directories to ignore when looking for source files. | ||
|
@@ -151,6 +144,7 @@ | |
latex_documents = [ | ||
( | ||
master_doc, | ||
slug, | ||
"Vyper.tex", | ||
"Vyper Documentation", | ||
"Vyper Team (originally created by Vitalik Buterin)", | ||
|
@@ -163,7 +157,7 @@ | |
|
||
# One entry per manual page. List of tuples | ||
# (source start file, name, description, authors, manual section). | ||
man_pages = [(master_doc, "vyper", "Vyper Documentation", [author], 1)] | ||
man_pages = [(master_doc, slug, "vyper", "Vyper Documentation", [author], 1)] | ||
|
||
|
||
# -- Options for Texinfo output ------------------------------------------- | ||
|
@@ -174,6 +168,7 @@ | |
texinfo_documents = [ | ||
( | ||
master_doc, | ||
slug, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. stray space |
||
"Vyper", | ||
"Vyper Documentation", | ||
author, | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we need all of these extensions?