Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,16 @@ For development and tests:
python -m pip install -e ".[test,lint]"
```

For a Conda-based development environment with DFTB+ included:
For a Conda-based development environment with all calculation backends
(DFTB+, `modes`, xtb, tblite) included:

```bash
conda env create -f environment.yml
conda activate thermoscreening
```

Then `thermo doctor` should report every backend as found.

## DFTB+ Setup

DFTB+ calculations require two external pieces:
Expand Down
5 changes: 4 additions & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ channels:
- conda-forge
dependencies:
- python>=3.12
- dftbplus
# calculation backends (compiled programs; pip cannot install these)
- dftbplus # DFTB+ engine: provides `dftb+` and `modes`
- xtb # native xtb binary, for `--engine xtb-cli`
- tblite-python # GFN-xTB via tblite, for `--engine xtb`
- pip
- pip:
- "-e .[test,lint]"
Loading