Skip to content

Commit 92162e5

Browse files
committed
docs: Fix copyright year and authors in conf.py
1 parent e0251a0 commit 92162e5

File tree

1 file changed

+37
-37
lines changed

1 file changed

+37
-37
lines changed

docs/conf.py

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,27 @@
77
import sys
88

99
# Add the parent directory to the path so we can import pythonbpf
10-
sys.path.insert(0, os.path.abspath('..'))
10+
sys.path.insert(0, os.path.abspath(".."))
1111

1212
# -- Project information -----------------------------------------------------
1313
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
1414

15-
project = 'PythonBPF'
16-
copyright = '2024-2026, r41k0u, varun-r-mallya'
17-
author = 'r41k0u, varun-r-mallya'
18-
release = '0.1.8'
19-
version = '0.1.8'
15+
project = "PythonBPF"
16+
copyright = "2026, Pragyansh Chaturvedi, Varun Mallya"
17+
author = "Pragyansh Chaturvedi, Varun Mallya"
18+
release = "0.1.8"
19+
version = "0.1.8"
2020

2121
# -- General configuration ---------------------------------------------------
2222
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
2323

2424
extensions = [
25-
'myst_parser',
26-
'sphinx.ext.autodoc',
27-
'sphinx.ext.napoleon',
28-
'sphinx.ext.viewcode',
29-
'sphinx.ext.intersphinx',
30-
'sphinx_copybutton',
25+
"myst_parser",
26+
"sphinx.ext.autodoc",
27+
"sphinx.ext.napoleon",
28+
"sphinx.ext.viewcode",
29+
"sphinx.ext.intersphinx",
30+
"sphinx_copybutton",
3131
]
3232

3333
# MyST-Parser configuration
@@ -53,51 +53,51 @@
5353

5454
# Intersphinx mapping
5555
intersphinx_mapping = {
56-
'python': ('https://docs.python.org/3', None),
57-
'llvmlite': ('https://llvmlite.readthedocs.io/en/latest/', None),
56+
"python": ("https://docs.python.org/3", None),
57+
"llvmlite": ("https://llvmlite.readthedocs.io/en/latest/", None),
5858
}
5959

60-
templates_path = ['_templates']
61-
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
60+
templates_path = ["_templates"]
61+
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
6262

6363
# Source file suffixes
6464
source_suffix = {
65-
'.rst': 'restructuredtext',
66-
'.md': 'markdown',
65+
".rst": "restructuredtext",
66+
".md": "markdown",
6767
}
6868

6969
# The master toctree document
70-
master_doc = 'index'
70+
master_doc = "index"
7171

7272
# -- Options for HTML output -------------------------------------------------
7373
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
7474

75-
html_theme = 'sphinx_rtd_theme'
76-
html_static_path = ['_static']
75+
html_theme = "sphinx_rtd_theme"
76+
html_static_path = ["_static"]
7777

7878
# Theme options
7979
html_theme_options = {
80-
'logo_only': False,
81-
'display_version': True,
82-
'prev_next_buttons_location': 'bottom',
83-
'style_external_links': False,
84-
'vcs_pageview_mode': '',
80+
"logo_only": False,
81+
"display_version": True,
82+
"prev_next_buttons_location": "bottom",
83+
"style_external_links": False,
84+
"vcs_pageview_mode": "",
8585
# Toc options
86-
'collapse_navigation': False,
87-
'sticky_navigation': True,
88-
'navigation_depth': 4,
89-
'includehidden': True,
90-
'titles_only': False
86+
"collapse_navigation": False,
87+
"sticky_navigation": True,
88+
"navigation_depth": 4,
89+
"includehidden": True,
90+
"titles_only": False,
9191
}
9292

9393
# -- Options for autodoc -----------------------------------------------------
9494

9595
autodoc_default_options = {
96-
'members': True,
97-
'member-order': 'bysource',
98-
'special-members': '__init__',
99-
'undoc-members': True,
100-
'exclude-members': '__weakref__'
96+
"members": True,
97+
"member-order": "bysource",
98+
"special-members": "__init__",
99+
"undoc-members": True,
100+
"exclude-members": "__weakref__",
101101
}
102102

103-
autodoc_typehints = 'description'
103+
autodoc_typehints = "description"

0 commit comments

Comments
 (0)