File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -39,24 +39,33 @@ make repro
3939
4040``` text
4141.
42- |-- .github/
43- | `-- workflows/
44- |-- docs/
45- |-- examples/
46- |-- scripts/
47- |-- src/
48- | `-- drc_python_template/
49- |-- tests/
50- |-- .gitignore
51- |-- .pre-commit-config.yaml
52- |-- .python-version
53- |-- AGENTS.md
54- |-- CONTRIBUTING.md
55- |-- LICENSE
56- |-- Makefile
57- |-- README.md
58- |-- pyproject.toml
59- `-- uv.lock
42+ ├── AGENTS.md
43+ ├── CONTRIBUTING.md
44+ ├── LICENSE
45+ ├── Makefile
46+ ├── README.md
47+ ├── docs
48+ │ ├── api.rst
49+ │ ├── conf.py
50+ │ ├── dependencies_and_extras.rst
51+ │ ├── drc.png
52+ │ ├── index.rst
53+ │ └── quickstart.rst
54+ ├── examples
55+ │ ├── README.md
56+ │ └── basic_usage.py
57+ ├── pyproject.toml
58+ ├── scripts
59+ │ ├── check_coverage_thresholds.py
60+ │ ├── check_docs_consistency.py
61+ │ └── check_google_docstrings.py
62+ ├── src
63+ │ ├── design_research_python_template
64+ │ └── drc_python_template
65+ ├── tests
66+ │ ├── test_core.py
67+ │ └── test_public_api.py
68+ └── uv.lock
6069```
6170
6271- ` .github/workflows/ ` contains the GitHub Actions definitions for CI and docs publishing.
Original file line number Diff line number Diff line change 3939 html_theme = "alabaster"
4040
4141html_static_path : list [str ] = []
42+ html_logo = "drc.png"
43+ html_theme_options = {"logo_only" : True }
You can’t perform that action at this time.
0 commit comments