Unverified Commit b219d6b5 authored by Philipp Schmid's avatar Philipp Schmid Committed by GitHub
Browse files

added social thumbnail for docs (#11083)

parent 6c1bee7d
...@@ -14,23 +14,24 @@ ...@@ -14,23 +14,24 @@
# #
import os import os
import sys import sys
sys.path.insert(0, os.path.abspath('../../src'))
sys.path.insert(0, os.path.abspath("../../src"))
# -- Project information ----------------------------------------------------- # -- Project information -----------------------------------------------------
project = u'transformers' project = "transformers"
copyright = u'2020, The Hugging Face Team, Licenced under the Apache License, Version 2.0' copyright = "2020, The Hugging Face Team, Licenced under the Apache License, Version 2.0"
author = u'huggingface' author = "huggingface"
# The short X.Y version # The short X.Y version
version = u'' version = ""
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
release = u'4.5.0.dev0' release = "4.5.0.dev0"
# Prefix link to point to master, comment this during version release and uncomment below line # Prefix link to point to master, comment this during version release and uncomment below line
extlinks = {'prefix_link': ('https://github.com/huggingface/transformers/blob/master/%s', '')} extlinks = {"prefix_link": ("https://github.com/huggingface/transformers/blob/master/%s", "")}
# Prefix link to always point to corresponding version, uncomment this during version release # Prefix link to always point to corresponding version, uncomment this during version release
# extlinks = {'prefix_link': ('https://github.com/huggingface/transformers/blob/v'+ release + '/%s', '')} # extlinks = {'prefix_link': ('https://github.com/huggingface/transformers/blob/v'+ release + '/%s', '')}
...@@ -44,27 +45,28 @@ extlinks = {'prefix_link': ('https://github.com/huggingface/transformers/blob/ma ...@@ -44,27 +45,28 @@ extlinks = {'prefix_link': ('https://github.com/huggingface/transformers/blob/ma
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones. # ones.
extensions = [ extensions = [
'sphinx.ext.autodoc', "sphinx.ext.autodoc",
'sphinx.ext.extlinks', "sphinx.ext.extlinks",
'sphinx.ext.coverage', "sphinx.ext.coverage",
'sphinx.ext.napoleon', "sphinx.ext.napoleon",
'recommonmark', "recommonmark",
'sphinx.ext.viewcode', "sphinx.ext.viewcode",
'sphinx_markdown_tables', "sphinx_markdown_tables",
'sphinx_copybutton' "sphinxext.opengraph",
"sphinx_copybutton",
] ]
# Add any paths that contain templates here, relative to this directory. # Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates'] templates_path = ["_templates"]
# The suffix(es) of source filenames. # The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string: # You can specify multiple suffix as a list of string:
# #
source_suffix = ['.rst', '.md'] source_suffix = [".rst", ".md"]
# source_suffix = '.rst' # source_suffix = '.rst'
# The master toctree document. # The master toctree document.
master_doc = 'index' master_doc = "index"
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.
...@@ -76,7 +78,7 @@ language = None ...@@ -76,7 +78,7 @@ language = None
# List of patterns, relative to source directory, that match files and # List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files. # directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path. # This pattern also affects html_static_path and html_extra_path.
exclude_patterns = [u'_build', 'Thumbs.db', '.DS_Store'] exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
# The name of the Pygments (syntax highlighting) style to use. # The name of the Pygments (syntax highlighting) style to use.
pygments_style = None pygments_style = None
...@@ -90,21 +92,30 @@ copybutton_prompt_is_regexp = True ...@@ -90,21 +92,30 @@ copybutton_prompt_is_regexp = True
# The theme to use for HTML and HTML Help pages. See the documentation for # The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes. # a list of builtin themes.
# #
html_theme = 'sphinx_rtd_theme' html_theme = "sphinx_rtd_theme"
# Theme options are theme-specific and customize the look and feel of a theme # Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the # further. For a list of options available for each theme, see the
# documentation. # documentation.
# #
html_theme_options = { html_theme_options = {"analytics_id": "UA-83738774-2", "navigation_with_keys": True}
'analytics_id': 'UA-83738774-2',
'navigation_with_keys': True # Configuration for OpenGraph and Twitter Card Tags.
} # These are responsible for creating nice shareable social images https://ahrefs.com/blog/open-graph-meta-tags/
# https://ogp.me/#type_website
ogp_image = "https://huggingface.co/front/thumbnails/transformers.png"
ogp_description = "State-of-the-art Natural Language Processing for PyTorch and TensorFlow 2.0. Transformers provides thousands of pretrained models to perform tasks on texts such as classification, information extraction, question answering, summarization, translation, text generation, etc in 100+ languages. Its aim is to make cutting-edge NLP easier to use for everyone"
ogp_description_length = 160
ogp_custom_meta_tags = [
f'<meta name="twitter:image" content="{ogp_image}">',
f'<meta name="twitter:description" content="{ogp_description}">',
]
# Add any paths that contain custom static files (such as style sheets) here, # Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files, # relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css". # so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static'] html_static_path = ["_static"]
# Custom sidebar templates, must be a dictionary that maps document names # Custom sidebar templates, must be a dictionary that maps document names
# to template names. # to template names.
...@@ -116,17 +127,17 @@ html_static_path = ['_static'] ...@@ -116,17 +127,17 @@ html_static_path = ['_static']
# #
# html_sidebars = {} # html_sidebars = {}
# This must be the name of an image file (path relative to the configuration # This must be the name of an image file (path relative to the configuration
# directory) that is the favicon of the docs. Modern browsers use this as # directory) that is the favicon of the docs. Modern browsers use this as
# the icon for tabs, windows and bookmarks. It should be a Windows-style # the icon for tabs, windows and bookmarks. It should be a Windows-style
# icon file (.ico). # icon file (.ico).
html_favicon = 'favicon.ico' html_favicon = "favicon.ico"
# -- Options for HTMLHelp output --------------------------------------------- # -- Options for HTMLHelp output ---------------------------------------------
# Output file base name for HTML help builder. # Output file base name for HTML help builder.
htmlhelp_basename = 'transformersdoc' htmlhelp_basename = "transformersdoc"
# -- Options for LaTeX output ------------------------------------------------ # -- Options for LaTeX output ------------------------------------------------
...@@ -135,15 +146,12 @@ latex_elements = { ...@@ -135,15 +146,12 @@ latex_elements = {
# The paper size ('letterpaper' or 'a4paper'). # The paper size ('letterpaper' or 'a4paper').
# #
# 'papersize': 'letterpaper', # 'papersize': 'letterpaper',
# The font size ('10pt', '11pt' or '12pt'). # The font size ('10pt', '11pt' or '12pt').
# #
# 'pointsize': '10pt', # 'pointsize': '10pt',
# Additional stuff for the LaTeX preamble. # Additional stuff for the LaTeX preamble.
# #
# 'preamble': '', # 'preamble': '',
# Latex figure (float) alignment # Latex figure (float) alignment
# #
# 'figure_align': 'htbp', # 'figure_align': 'htbp',
...@@ -153,8 +161,7 @@ latex_elements = { ...@@ -153,8 +161,7 @@ latex_elements = {
# (source start file, target name, title, # (source start file, target name, title,
# author, documentclass [howto, manual, or own class]). # author, documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
(master_doc, 'transformers.tex', u'transformers Documentation', (master_doc, "transformers.tex", "transformers Documentation", "huggingface", "manual"),
u'huggingface', 'manual'),
] ]
...@@ -162,10 +169,7 @@ latex_documents = [ ...@@ -162,10 +169,7 @@ latex_documents = [
# One entry per manual page. List of tuples # One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section). # (source start file, name, description, authors, manual section).
man_pages = [ man_pages = [(master_doc, "transformers", "transformers Documentation", [author], 1)]
(master_doc, 'transformers', u'transformers Documentation',
[author], 1)
]
# -- Options for Texinfo output ---------------------------------------------- # -- Options for Texinfo output ----------------------------------------------
...@@ -174,9 +178,15 @@ man_pages = [ ...@@ -174,9 +178,15 @@ man_pages = [
# (source start file, target name, title, author, # (source start file, target name, title, author,
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
(master_doc, 'transformers', u'transformers Documentation', (
author, 'transformers', 'One line description of project.', master_doc,
'Miscellaneous'), "transformers",
"transformers Documentation",
author,
"transformers",
"One line description of project.",
"Miscellaneous",
),
] ]
...@@ -195,11 +205,13 @@ epub_title = project ...@@ -195,11 +205,13 @@ epub_title = project
# epub_uid = '' # epub_uid = ''
# A list of files that should not be packed into the epub file. # A list of files that should not be packed into the epub file.
epub_exclude_files = ['search.html'] epub_exclude_files = ["search.html"]
def setup(app): def setup(app):
app.add_css_file('css/huggingface.css') app.add_css_file("css/huggingface.css")
app.add_css_file('css/code-snippets.css') app.add_css_file("css/code-snippets.css")
app.add_js_file('js/custom.js') app.add_js_file("js/custom.js")
# -- Extension configuration ------------------------------------------------- # -- Extension configuration -------------------------------------------------
...@@ -126,6 +126,7 @@ _deps = [ ...@@ -126,6 +126,7 @@ _deps = [
"sphinx-copybutton", "sphinx-copybutton",
"sphinx-markdown-tables", "sphinx-markdown-tables",
"sphinx-rtd-theme==0.4.3", # sphinx-rtd-theme==0.5.0 introduced big changes in the style. "sphinx-rtd-theme==0.4.3", # sphinx-rtd-theme==0.5.0 introduced big changes in the style.
"sphinxext-opengraph==0.4.1",
"sphinx==3.2.1", "sphinx==3.2.1",
"starlette", "starlette",
"tensorflow-cpu>=2.3", "tensorflow-cpu>=2.3",
...@@ -243,11 +244,25 @@ extras["testing"] = ( ...@@ -243,11 +244,25 @@ extras["testing"] = (
+ extras["modelcreation"] + extras["modelcreation"]
) )
extras["docs"] = deps_list( extras["docs"] = deps_list(
"docutils", "recommonmark", "sphinx", "sphinx-markdown-tables", "sphinx-rtd-theme", "sphinx-copybutton" "docutils",
"recommonmark",
"sphinx",
"sphinx-markdown-tables",
"sphinx-rtd-theme",
"sphinx-copybutton",
"sphinxext-opengraph",
) )
extras["quality"] = deps_list("black", "isort", "flake8") extras["quality"] = deps_list("black", "isort", "flake8")
extras["all"] = extras["tf"] + extras["torch"] + extras["flax"] + extras["sentencepiece"] + extras["tokenizers"] + extras["speech"] + extras["vision"] extras["all"] = (
extras["tf"]
+ extras["torch"]
+ extras["flax"]
+ extras["sentencepiece"]
+ extras["tokenizers"]
+ extras["speech"]
+ extras["vision"]
)
extras["dev"] = ( extras["dev"] = (
extras["all"] extras["all"]
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment