Backport module for sys.audit and sys.addaudithook mechanism
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
import datetime
|
|
|
|
|
|
import sphinx_rtd_theme
|
|
|
|
|
|
year = datetime.datetime.now().year
|
|
|
project = "sysaudit"
|
|
|
copyright = "2020-{}, brettlangdon".format(year)
|
|
|
author = "brettlangdon <me@brett.is>"
|
|
|
|
|
|
|
|
|
extensions = ["sphinx_rtd_theme"]
|
|
|
templates_path = []
|
|
|
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
|
|
|
html_theme = "sphinx_rtd_theme"
|
|
|
html_static_path = []
|
|
|
html_theme_options = {}
|