-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from mgm8/dev
Dev: Adding a reference page to the documentation
- Loading branch information
Showing
7 changed files
with
228 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# | ||
# conf.py | ||
# | ||
# Copyright (C) 2022, Gabriel Mariano Marcelino - PU5GMA <[email protected]> | ||
# Copyright (C) 2023, Gabriel Mariano Marcelino - PU5GMA <[email protected]> | ||
# | ||
# This file is part of PyNGHam library. | ||
# | ||
|
@@ -32,14 +32,16 @@ | |
|
||
import sphinx_rtd_theme | ||
|
||
sys.path.insert(0, os.path.abspath('../')) # Source code dir relative to this file | ||
|
||
# -- Project information ----------------------------------------------------- | ||
|
||
project = 'pyngham' | ||
copyright = '2022, Gabriel Mariano Marcelino - PU5GMA' | ||
copyright = '2023, Gabriel Mariano Marcelino - PU5GMA' | ||
author = 'Gabriel Mariano Marcelino' | ||
|
||
# The full version, including alpha/beta/rc tags | ||
release = "1.0" | ||
release = "1.1" | ||
|
||
|
||
# -- General configuration --------------------------------------------------- | ||
|
@@ -49,6 +51,7 @@ | |
# ones. | ||
extensions = [ | ||
'sphinx_rtd_theme', | ||
'sphinx.ext.autodoc', # Core library for html generation from docstrings | ||
] | ||
|
||
# Add any paths that contain templates here, relative to this directory. | ||
|
@@ -73,8 +76,3 @@ | |
# a list of builtin themes. | ||
# | ||
html_theme = 'sphinx_rtd_theme' | ||
|
||
# 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, | ||
# so a file named "default.css" will overwrite the builtin "default.css". | ||
html_static_path = ['_static'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,4 +25,5 @@ Contents | |
extension | ||
install | ||
usage | ||
reference | ||
development |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
********* | ||
Reference | ||
********* | ||
|
||
On this page, there is a reference to the functions, classes and methods of the PyNGHam library, including a description of each one, and the inputs and outputs. | ||
|
||
Main Module | ||
=========== | ||
|
||
.. automodule:: pyngham.pyngham | ||
:members: | ||
|
||
SPP Module | ||
========== | ||
|
||
.. automodule:: pyngham.spp | ||
:members: | ||
|
||
Extension Module | ||
================ | ||
|
||
.. automodule:: pyngham.extension | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.