From e59f4c5402c9d392d69bbd595b52e62ec419b654 Mon Sep 17 00:00:00 2001 From: "Juan M. Tirado" Date: Fri, 30 Aug 2024 10:01:09 +0200 Subject: [PATCH] fix: remove readthedocs conf (#93) --- .readthedocs.yaml | 32 -------------------------------- docs/conf.py | 38 -------------------------------------- 2 files changed, 70 deletions(-) delete mode 100644 .readthedocs.yaml delete mode 100644 docs/conf.py diff --git a/.readthedocs.yaml b/.readthedocs.yaml deleted file mode 100644 index 9500dc8..0000000 --- a/.readthedocs.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# .readthedocs.yaml -# Read the Docs configuration file -# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details - -# Required -version: 2 - -# Set the OS, Python version and other tools you might need -build: - os: ubuntu-24.04 - tools: - python: "3.12" - # You can also specify other tool versions: - # nodejs: "19" - # rust: "1.64" - # golang: "1.19" - -# Build documentation in the "docs/" directory with Sphinx -sphinx: - configuration: docs/conf.py - -# Optionally build your docs in additional formats such as PDF and ePub -# formats: -# - pdf -# - epub - -# Optional but recommended, declare the Python requirements required -# to build your documentation -# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html -# python: -# install: -# - requirements: docs/requirements.txt diff --git a/docs/conf.py b/docs/conf.py deleted file mode 100644 index fcc8e06..0000000 --- a/docs/conf.py +++ /dev/null @@ -1,38 +0,0 @@ -# Configuration file for the Sphinx documentation builder. -# -# For the full list of built-in configuration values, see the documentation: -# https://www.sphinx-doc.org/en/master/usage/configuration.html - -# -- Project information ----------------------------------------------------- -# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information - -import os -import sys - -sys.path.insert(0, os.path.abspath('../pantos/servicenode')) - -project = 'ServiceNode' -copyright = '2024, Pantos team' -author = 'Pantos team' - -# -- General configuration --------------------------------------------------- -# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration - -extensions = [ - 'sphinx.ext.autodoc', - 'sphinx.ext.viewcode', - 'sphinx.ext.napoleon', - 'sphinx.ext.intersphinx', - 'sphinx.ext.githubpages' -] - -templates_path = ['_templates'] -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] - - - -# -- Options for HTML output ------------------------------------------------- -# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output - -html_theme = 'alabaster' -html_static_path = ['_static']