Line data Source code
1 : # SPDX-FileCopyrightText: 2025 PairInteraction Developers 2 : # SPDX-License-Identifier: LGPL-3.0-or-later 3 : 4 : # In addition to the `pairinteraction` command installed via the pyproject.toml file, 5 : # this file allows to run the PairInteraction cli via `python -m pairinteraction`. 6 : 7 0 : from pairinteraction.cli import main 8 : 9 0 : if __name__ == "__main__": 10 0 : main()