Skip to content

Commit 0956130

Browse files
committed
great_docs cofig
1 parent d23151e commit 0956130

1 file changed

Lines changed: 109 additions & 0 deletions

File tree

great-docs.yml

Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
# Great Docs Configuration
2+
# See https://posit-dev.github.io/great-docs/user-guide/03-configuration.html
3+
4+
# Module Name (optional)
5+
# ----------------------
6+
# Set this if your importable module name differs from the project name.
7+
# Example: project 'py-yaml12' with module name 'yaml12'
8+
module: firebird.base
9+
10+
# Docstring Parser
11+
# ----------------
12+
# The docstring format used in your package (numpy, google, or sphinx)
13+
parser: google
14+
15+
# Dynamic Introspection
16+
# ---------------------
17+
# Use runtime introspection for more accurate documentation (default: true)
18+
# Set to false if your package has cyclic alias issues (e.g., PyO3/Rust bindings)
19+
dynamic: true
20+
21+
# Exclusions
22+
# ----------
23+
# Items to exclude from auto-documentation (affects 'init' and 'scan')
24+
# exclude:
25+
# - InternalClass
26+
# - helper_function
27+
28+
# Logo & Favicon
29+
# ---------------
30+
# Point to a single logo file (replaces the text title in the navbar):
31+
# logo: assets/logo.svg
32+
#
33+
# For light/dark variants:
34+
# logo:
35+
# light: assets/logo-light.svg
36+
# dark: assets/logo-dark.svg
37+
#
38+
# To show the text title alongside the logo, add: show_title: true
39+
40+
# Author Information
41+
# ------------------
42+
# Author metadata for display in the landing page sidebar
43+
# You can add additional fields: github, orcid, affiliation, homepage
44+
authors:
45+
- name: Pavel Císař
46+
role: Author
47+
# affiliation:
48+
email: pcisar@users.sourceforge.net
49+
# github:
50+
# orcid:
51+
# homepage:
52+
53+
# Funding / Copyright Holder
54+
# --------------------------
55+
# Credit the organization that funds or holds copyright for this package.
56+
# Displays in sidebar and footer. Homepage and ROR provide links.
57+
# funding:
58+
# name: "Posit Software, PBC"
59+
# roles:
60+
# - Copyright holder
61+
# - funder
62+
# homepage: https://posit.co
63+
# ror: https://ror.org/03wc8by49
64+
65+
# Site Settings
66+
# -------------
67+
# site:
68+
# theme: flatly # Quarto theme (default: flatly)
69+
# toc: true # Show table of contents (default: true)
70+
# toc-depth: 2 # TOC heading depth (default: 2)
71+
# toc-title: On this page # TOC title (default: "On this page")
72+
73+
# Jupyter Kernel
74+
# --------------
75+
# Jupyter kernel to use for executing code cells in .qmd files.
76+
# This is set at the project level so it applies to all pages, including
77+
# auto-generated API reference pages. Can be overridden in individual .qmd
78+
# file frontmatter if needed for special cases.
79+
jupyter: python3
80+
81+
# CLI Documentation
82+
# -----------------
83+
# cli:
84+
# enabled: true # Enable CLI documentation
85+
# module: my_package.cli # Module containing Click commands
86+
# name: cli # Name of the Click command object
87+
88+
# API Reference Structure
89+
# -----------------------
90+
# Auto-discovery couldn't determine your package's public API.
91+
# You can manually specify which items to document here.
92+
#
93+
# Uncomment and customize the reference section below:
94+
#
95+
# reference:
96+
# - title: Functions
97+
# desc: Public functions provided by the package
98+
# contents:
99+
# - my_function
100+
# - another_function
101+
#
102+
# - title: Classes
103+
# desc: Main classes for working with the package
104+
# contents:
105+
# - name: MyClass
106+
# members: false # Don't document methods inline
107+
# - SimpleClass # Methods documented inline (default)
108+
#
109+
# After editing, run 'great-docs build' to generate your documentation.

0 commit comments

Comments
 (0)