Conversation
Resolves #32: structured user + API documentation. - docs/: a Sphinx site (installation, usage, configuration, API reference) with autodoc + napoleon; builds cleanly (0 warnings). Installation covers the DFTB+/Slater-Koster setup explicitly and points at the examples/ end-to-end input; usage documents all four CLI subcommands (including screen) and a Python quickstart; configuration is a reference for engines, solvation, spin, etc. - .github/workflows/docs.yml: build the docs on every push/PR so they cannot rot. - README: link the docs and how to build them. Closes #32
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #76 +/- ##
=======================================
Coverage 96.80% 96.80%
=======================================
Files 25 25
Lines 1629 1629
=======================================
Hits 1577 1577
Misses 52 52
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Resolves #32 — structured user + API documentation. (The issue's two notes were already partly met: DFTB+/Slater-Koster setup is documented in the README, and
examples/has an end-to-end input; this adds the structured site around them.)What changed
docs/— a Sphinx site that builds cleanly (0 warnings):installation.rst— pip vs. theenvironment.ymlfull stack, the backends table, and explicit DFTB+/Slater-Koster + GBSA setup viathermo setup-dftb.usage.rst— all four CLI subcommands (includingthermo screen, previously undocumented) + a Python quickstart (dftb+/xtb/xtb-cli/conformers) + a pointer to theexamples/end-to-end input.configuration.rst— reference for engines/parameter-sets, solvation, quasi-RRHO, spin/charge, temperature/pressure,--resume, and the screening input formats.api.rst— autodoc of the public API (dftbplus_thermo,xtb_thermo,xtb_cli_thermo,run_thermo,screen,generate_conformers,System,Thermo, readers, backend setup).conf.py— autodoc + napoleon + viewcode,alabastertheme (no extra deps beyond the existingdocsextra),tblitemocked (lazy/optional import)..github/workflows/docs.yml— builds the docs on every push/PR so they can't rot.Verified
python -m sphinx -b html docs docs/_build/html→ build succeeded, 0 warnings; autodoc imports the package and renders the API.Closes #32. No source changes, so the test suite is unaffected (269 passed / 11 skipped).