From 90528cee2d29b1c4f2078ef7410e530035407199 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20Gia=20Phong?= Date: Wed, 9 Sep 2020 17:37:32 +0700 Subject: [PATCH] Interlink backquoted objects in docstring --- docs/source/_static/.empty | 0 docs/source/conf.py | 3 ++- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) delete mode 100644 docs/source/_static/.empty diff --git a/docs/source/_static/.empty b/docs/source/_static/.empty deleted file mode 100644 index e69de29..0000000 diff --git a/docs/source/conf.py b/docs/source/conf.py index 7f0c4cc..f1203ba 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -16,6 +16,7 @@ release = '0.2.1' extensions = [ 'sphinx.ext.autodoc', 'sphinx.ext.githubpages', 'sphinx.ext.napoleon'] napoleon_google_docstring = False +default_role = 'py:obj' # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] @@ -36,4 +37,4 @@ html_sidebars = { # here, relative to this directory. They are copied after the builtin # static files, so a file named "default.css" will overwrite the builtin # "default.css". -html_static_path = ['_static'] +html_static_path = [] diff --git a/pyproject.toml b/pyproject.toml index 03e74d1..4e8682b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,3 @@ [build-system] requires = ['setuptools>=43', 'wheel>=0.31', 'Cython'] -build-backend = "setuptools.build_meta" +build-backend = 'setuptools.build_meta'