Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 26 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

project = "httpmorph"
copyright = "2025, httpmorph contributors"
author = "httpmorph contributors"
copyright = "2025, Arman Hossain"
author = "Arman Hossain"

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

# Theme options for Read the Docs theme
html_theme_options = {
"display_version": True,
"prev_next_buttons_location": "bottom",
"style_external_links": False,
"collapse_navigation": False,
"sticky_navigation": True,
"navigation_depth": 4,
}

# Add author contact information
html_context = {
"display_github": True,
"github_user": "arman-bd",
"github_repo": "httpmorph",
"github_version": "main",
"conf_py_path": "/docs/source/",
}

# Additional metadata
html_show_sourcelink = True
html_show_sphinx = True
html_show_copyright = True

# -- Options for autodoc -----------------------------------------------------
autodoc_member_order = "bysource"
autodoc_typehints = "description"
8 changes: 8 additions & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -89,3 +89,11 @@ License
-------

MIT License

Author
------

**Arman Hossain**

- GitHub: `arman-bd <https://github.com/arman-bd>`_
- Email: arman@bytetunnels.com
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "httpmorph"
version = "0.2.0"
version = "0.2.1"
description = "A Python HTTP client focused on mimicking browser fingerprints."
readme = "README.md"
requires-python = ">=3.8"
Expand Down
1 change: 1 addition & 0 deletions src/httpmorph/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

__version__ = _get_version("httpmorph")
__author__ = "Arman Hossain"
__email__ = "arman@bytetunnels.com"
__license__ = "MIT"

# Import C implementation (required - no fallback!)
Expand Down
Loading