mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-08 08:43:53 +01:00
35 lines
1.2 KiB
Python
35 lines
1.2 KiB
Python
|
# 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.
|
||
|
#
|
||
|
import os
|
||
|
import sys
|
||
|
|
||
|
# -- Project information -----------------------------------------------------
|
||
|
|
||
|
project = 'Bitburner'
|
||
|
|
||
|
# -- 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 = [
|
||
|
]
|
||
|
|
||
|
# 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 = ['*']
|
||
|
exclude_patterns = ['doc/index.rst']
|
||
|
|
||
|
# -- Options for HTML output -------------------------------------------------
|