Skip to content

Commit b7588d0

Browse files
committed
Se corrigieron errores en conf.py e index.rst. Se modificó requirements.txt para contener las bibliotecas python a utilizar. El archivo modules.rst no sufrió cambios, contrario a lo que dice el commit.
1 parent 07de5f0 commit b7588d0

4 files changed

Lines changed: 22 additions & 7 deletions

File tree

docs/conf.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
# -- Project information -----------------------------------------------------
77
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
88

9+
import os
10+
import sys
11+
sys.path.insert(0, os.path.abspath('../'))
12+
913
project = 'bhexpress'
1014
copyright = '2024, bhexpress'
1115
author = 'bhexpress'
@@ -14,7 +18,8 @@
1418
# -- General configuration ---------------------------------------------------
1519
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
1620

17-
extensions = []
21+
extensions = ['sphinx.ext.autodoc',
22+
'sphinx_rtd_theme']
1823

1924
templates_path = ['_templates']
2025
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
@@ -24,5 +29,5 @@
2429
# -- Options for HTML output -------------------------------------------------
2530
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
2631

27-
html_theme = 'alabaster'
32+
html_theme = 'sphinx_rtd_theme'
2833
html_static_path = ['_static']

docs/index.rst

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.. bhexpress documentation master file, created by
2-
sphinx-quickstart on Fri Jul 19 12:31:01 2024.
2+
sphinx-quickstart on Fri Jul 19 14:27:00 2024.
33
You can adapt this file completely to your liking, but it should at least
44
contain the root `toctree` directive.
55
@@ -14,4 +14,12 @@ documentation for details.
1414
.. toctree::
1515
:maxdepth: 2
1616
:caption: Contents:
17+
18+
modules
1719

20+
Indices and tables
21+
==================
22+
23+
* :ref:`genindex`
24+
* :ref:`modindex`
25+
* :ref:`search`

docs/modules.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
api_client
2-
==========
1+
bhexpress
2+
=========
33

44
.. toctree::
55
:maxdepth: 4
66

7-
api_client
7+
bhexpress

requirements.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Babel==2.15.0
33
certifi==2024.7.4
44
charset-normalizer==3.3.2
55
colorama==0.4.6
6-
docutils==0.21.2
6+
docutils==0.20.1
77
idna==3.7
88
imagesize==1.4.1
99
Jinja2==3.1.4
@@ -14,9 +14,11 @@ python-dotenv==1.0.1
1414
requests==2.32.3
1515
snowballstemmer==2.2.0
1616
Sphinx==7.4.6
17+
sphinx-rtd-theme==2.0.0
1718
sphinxcontrib-applehelp==1.0.8
1819
sphinxcontrib-devhelp==1.0.6
1920
sphinxcontrib-htmlhelp==2.0.5
21+
sphinxcontrib-jquery==4.1
2022
sphinxcontrib-jsmath==1.0.1
2123
sphinxcontrib-qthelp==1.0.7
2224
sphinxcontrib-serializinghtml==1.1.10

0 commit comments

Comments
 (0)