2021-04-26 16:14:53 +00:00
|
|
|
# Configuration file for the Sphinx documentation builder.
|
|
|
|
#
|
|
|
|
# This file only contains a selection of the most common options. For a full
|
|
|
|
# list see the documentation:
|
|
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html
|
|
|
|
|
|
|
|
# -- Path setup --------------------------------------------------------------
|
|
|
|
|
|
|
|
# If extensions (or modules to document with autodoc) are in another directory,
|
|
|
|
# add these directories to sys.path here. If the directory is relative to the
|
|
|
|
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
2021-05-13 17:24:44 +00:00
|
|
|
|
2021-04-26 16:14:53 +00:00
|
|
|
import os
|
|
|
|
import sys
|
2021-05-10 14:39:36 +00:00
|
|
|
import pkg_resources
|
2021-05-13 17:24:44 +00:00
|
|
|
sys.path.insert(0, os.path.abspath('../..'))
|
2021-04-26 16:14:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
# -- Project information -----------------------------------------------------
|
|
|
|
|
2021-05-13 17:24:44 +00:00
|
|
|
project = 'N.E.S.T.'
|
|
|
|
copyright = "2021, Gruppo 2"
|
2021-04-26 16:14:53 +00:00
|
|
|
author = 'Gruppo 2'
|
2021-05-13 17:24:44 +00:00
|
|
|
release = '0.1.0'
|
2021-04-26 16:14:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
# -- General configuration ---------------------------------------------------
|
|
|
|
|
|
|
|
# Add any Sphinx extension module names here, as strings. They can be
|
|
|
|
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
|
|
|
# ones.
|
|
|
|
extensions = [
|
2021-05-10 14:39:36 +00:00
|
|
|
"sphinx.ext.autodoc",
|
|
|
|
"sphinx.ext.intersphinx",
|
|
|
|
'sphinx.ext.todo',
|
2021-04-26 16:14:53 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
# Add any paths that contain templates here, relative to this directory.
|
|
|
|
templates_path = ['_templates']
|
|
|
|
|
2021-05-13 17:24:44 +00:00
|
|
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
|
|
|
# for a list of supported languages.
|
|
|
|
#
|
|
|
|
# This is also used if you do content translation via gettext catalogs.
|
|
|
|
# Usually you set "language" from the command line for these cases.
|
|
|
|
language = 'it'
|
|
|
|
|
2021-04-26 16:14:53 +00:00
|
|
|
# List of patterns, relative to source directory, that match files and
|
|
|
|
# directories to ignore when looking for source files.
|
|
|
|
# This pattern also affects html_static_path and html_extra_path.
|
|
|
|
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
|
|
|
|
2021-05-10 14:39:36 +00:00
|
|
|
# Print warnings on the page
|
|
|
|
keep_warnings = True
|
|
|
|
|
|
|
|
# Display more warnings than usual
|
|
|
|
nitpicky = True
|
|
|
|
|
2021-04-26 16:14:53 +00:00
|
|
|
|
|
|
|
# -- Options for HTML output -------------------------------------------------
|
|
|
|
|
|
|
|
# The theme to use for HTML and HTML Help pages. See the documentation for
|
|
|
|
# a list of builtin themes.
|
2021-05-10 14:39:36 +00:00
|
|
|
html_theme = 'sphinx_rtd_theme'
|
2021-04-26 16:14:53 +00:00
|
|
|
|
|
|
|
# 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']
|
|
|
|
|
|
|
|
|
2021-05-10 14:39:36 +00:00
|
|
|
# -- Intersphinx options -----------------------------------------------------
|
|
|
|
|
|
|
|
intersphinx_mapping = {
|
|
|
|
"python": ("https://docs.python.org/3.8", None),
|
|
|
|
"sqlalchemy": ("https://docs.sqlalchemy.org/en/14/", None),
|
|
|
|
"flask": ("https://flask.palletsprojects.com/en/1.1.x/", None),
|
|
|
|
"flask_sqlalchemy": ("https://flask-sqlalchemy.palletsprojects.com/en/2.x/", None),
|
|
|
|
"flask_jwt_extended": ("https://flask-jwt-extended.readthedocs.io/en/stable/", None),
|
|
|
|
"flask_cors": ("https://flask-cors.readthedocs.io/en/latest/", None),
|
|
|
|
"requests": ("https://docs.python-requests.org/en/master/", None),
|
|
|
|
"apispec": ("https://apispec.readthedocs.io/en/latest/", None),
|
|
|
|
"marshmallow": ("https://marshmallow.readthedocs.io/en/stable/", None),
|
|
|
|
"tweepy": ("https://docs.tweepy.org/en/latest/", None),
|
|
|
|
"nltk": ("https://www.nltk.org/", None),
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# -- Extension configuration -------------------------------------------------
|
|
|
|
|
2021-05-15 00:39:33 +00:00
|
|
|
todo_include_todos = True
|
|
|
|
todo_emit_warnings = True
|
|
|
|
|
2021-05-10 14:39:36 +00:00
|
|
|
# -- Automodule settings -----------------------------------------------------
|
|
|
|
|
|
|
|
autodoc_default_options = {
|
|
|
|
'members': True,
|
|
|
|
'member-order': 'bysource',
|
|
|
|
'special-members': '__init__',
|
|
|
|
'undoc-members': True,
|
2021-05-10 15:03:05 +00:00
|
|
|
'show-inheritance': True,
|
2021-05-10 14:39:36 +00:00
|
|
|
}
|
2021-05-13 17:24:44 +00:00
|
|
|
|