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.
USM202504148 e0b048b2a5
Refactor project structure following Python code standards
2 months ago
..
README.md Refactor project structure following Python code standards 2 months ago
conf.py Refactor project structure following Python code standards 2 months ago
index.rst Refactor project structure following Python code standards 2 months ago

README.md

Documentation

This directory contains the project documentation.

Structure

docs/
├── api/                  # API reference documentation
├── guides/               # User guides and tutorials
├── examples/             # Example code and notebooks
└── index.rst             # Main documentation index

Building Documentation

To build the documentation locally:

cd docs
pip install sphinx sphinx-rtd-theme
make html

The built documentation will be available in docs/_build/html/.

Documentation Style

  • Use Google-style docstrings for all modules, classes, and functions
  • Include type hints in function signatures
  • Provide examples in docstrings where appropriate