Creating Documentation

To generate documentation for your project using Sphinx, you can use the nox task runner and the docs session.

Prerequisites

You should have gone through the Developer environment setup. This guide assumes you have already installed the necessary dependencies for the project. If you haven’t, and don’t want to, you can just install Poetry and nox.

Generating Documentation

To generate documentation for your project, simply run the following command:

nox -s docs

This will create the documentation in the _build/ directory in the top-level project directory.

Customizing Sphinx Configuration

By default, Sphinx uses a configuration file named conf.py located in the docs directory. You can customize the Sphinx configuration by modifying this file.

For more information on how to configure Sphinx, refer to the Sphinx documentation.

Writing Documentation

Documentation is written in reStructuredText (reST) format. There are several different forms of documentation in the astrodata project:

Note

This structure is liable to change. See Issue #47 for updates on future documentation plans or to contribute your own ideas.

New contributions to the codebase that add functionality, change existing functionality, or add new functions/classes should include in-code documentation in the form of updated or new docstrings.

Documentation should be written in a way that is clear and concise, and should follow common documentation standards. The current codebase is still being updated to follow standards, so if you’re unsure, feel free to ask for help in an issue or by contacting an author.