Skip to content

Commit a358c76

Browse files
committed
[CHORE] Attribution and Version Bump to 0.2.1 (#20)
1 parent 9469bda commit a358c76

File tree

4 files changed

+36
-3
lines changed

4 files changed

+36
-3
lines changed

docs/source/conf.py

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
1313

1414
project = "httpmorph"
15-
copyright = "2025, httpmorph contributors"
16-
author = "httpmorph contributors"
15+
copyright = "2025, Arman Hossain"
16+
author = "Arman Hossain"
1717

1818
# Read version from package metadata (single source of truth: pyproject.toml)
1919
try:
@@ -43,6 +43,30 @@
4343
html_theme = "sphinx_rtd_theme"
4444
html_static_path = ["_static"]
4545

46+
# Theme options for Read the Docs theme
47+
html_theme_options = {
48+
"display_version": True,
49+
"prev_next_buttons_location": "bottom",
50+
"style_external_links": False,
51+
"collapse_navigation": False,
52+
"sticky_navigation": True,
53+
"navigation_depth": 4,
54+
}
55+
56+
# Add author contact information
57+
html_context = {
58+
"display_github": True,
59+
"github_user": "arman-bd",
60+
"github_repo": "httpmorph",
61+
"github_version": "main",
62+
"conf_py_path": "/docs/source/",
63+
}
64+
65+
# Additional metadata
66+
html_show_sourcelink = True
67+
html_show_sphinx = True
68+
html_show_copyright = True
69+
4670
# -- Options for autodoc -----------------------------------------------------
4771
autodoc_member_order = "bysource"
4872
autodoc_typehints = "description"

docs/source/index.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,3 +89,11 @@ License
8989
-------
9090

9191
MIT License
92+
93+
Author
94+
------
95+
96+
**Arman Hossain**
97+
98+
- GitHub: `arman-bd <https://github.com/arman-bd>`_
99+
- Email: arman@bytetunnels.com

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
99

1010
[project]
1111
name = "httpmorph"
12-
version = "0.2.0"
12+
version = "0.2.1"
1313
description = "A Python HTTP client focused on mimicking browser fingerprints."
1414
readme = "README.md"
1515
requires-python = ">=3.8"

src/httpmorph/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
__version__ = _get_version("httpmorph")
1919
__author__ = "Arman Hossain"
20+
__email__ = "arman@bytetunnels.com"
2021
__license__ = "MIT"
2122

2223
# Import C implementation (required - no fallback!)

0 commit comments

Comments
 (0)