From 46e1251155be7ce85dfe0d19376266a73b4f907e Mon Sep 17 00:00:00 2001 From: Jack Gibson Date: Sun, 3 Sep 2023 11:44:56 -0500 Subject: [PATCH] removed sphinx file --- .github/workflows/{ci.yml => site.yml} | 4 +-- docs/conf.py | 42 -------------------------- 2 files changed, 1 insertion(+), 45 deletions(-) rename .github/workflows/{ci.yml => site.yml} (84%) delete mode 100644 docs/conf.py diff --git a/.github/workflows/ci.yml b/.github/workflows/site.yml similarity index 84% rename from .github/workflows/ci.yml rename to .github/workflows/site.yml index 350d53b8..c6a9c351 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/site.yml @@ -21,7 +21,5 @@ jobs: path: .cache restore-keys: | mkdocs-material- - - run: pip install \ - mkdocs-material \ - mkdocstrings-python + - run: pip install mkdocs-material mkdocstrings mkdocstrings-python - run: mkdocs gh-deploy --force diff --git a/docs/conf.py b/docs/conf.py deleted file mode 100644 index 6f808182..00000000 --- a/docs/conf.py +++ /dev/null @@ -1,42 +0,0 @@ -import sys - -# Configuration file for the Sphinx documentation builder. - -# -- Project information - -project = "VoteKit" -copyright = "2023, MGGG" -author = "MGGG" - -release = "0.0.1" -version = "0.0.1" - -# -- General configuration -sys.path.append("../src/") - -extensions = [ - "sphinx.ext.duration", - "sphinx.ext.doctest", - "sphinx.ext.autodoc", - "sphinx.ext.autosummary", - "sphinx.ext.intersphinx", - "sphinx.ext.coverage", - "sphinx.ext.mathjax", - "sphinx.ext.viewcode", - "sphinx.ext.intersphinx", -] - -intersphinx_mapping = { - "python": ("https://docs.python.org/3/", None), - "sphinx": ("https://www.sphinx-doc.org/en/master/", None), -} -intersphinx_disabled_domains = ["std"] - -templates_path = ["_templates"] - -# -- Options for HTML output - -html_theme = "sphinx_rtd_theme" - -# -- Options for EPUB output -epub_show_urls = "footnote"