Go to file
Atsushi Togo 285140c4ec
Merge pull request #363 from phonopy/pre-commit-ci-update-config
[pre-commit.ci] pre-commit autoupdate
2025-03-25 10:10:59 +09:00
.github Restrict pypolymlp<0.9 in github action tests 2025-03-01 17:50:22 +09:00
c fix typos and add codespell pre-commit hooks to catch future typos 2025-02-04 13:41:45 -05:00
ctest Initial attempt to migrate to nanobind 2024-07-07 10:55:19 +09:00
doc Set version 3.15.0 2025-03-04 13:10:42 +09:00
example fix typos and add codespell pre-commit hooks to catch future typos 2025-02-04 13:41:45 -05:00
fortran Initial attempt to migrate to nanobind 2024-07-07 10:55:19 +09:00
phono3py Set version 3.15.0 2025-03-04 13:10:42 +09:00
test Update for pypolymlp v0.9 2025-03-03 10:37:37 +09:00
.clang-format Update cmake recipe for c modules 2023-01-20 16:37:58 +09:00
.gitignore Update fortran test_get_bz_grid_addresses 2023-01-30 22:03:40 +09:00
.pre-commit-config.yaml [pre-commit.ci] pre-commit autoupdate 2025-03-24 20:47:42 +00:00
CMakeLists.txt Update github workflow to build wheels 2025-01-18 12:42:07 +09:00
LICENSE Update top page of web site 2024-02-22 22:24:52 +09:00
MANIFEST.in Update MANIFEST.in to include test 2022-10-06 09:20:43 +09:00
README.md Update README.md 2024-06-21 14:20:10 +09:00
cmake-format.py Initial attempt to migrate to nanobind 2024-07-07 10:55:19 +09:00
pyproject.toml Update pyrpoject.toml 2025-03-03 12:13:38 +09:00

README.md

Version Badge Downloads Badge PyPI version PyPI codecov

phono3py

A simulation package of phonon-phonon interaction related properties mainly written in python. Phono3py user documentation is found at http://phonopy.github.io/phono3py/.

Mailing list for questions

Usual phono3py questions should be sent to phonopy mailing list (https://sourceforge.net/p/phonopy/mailman/).

Dependency

See requirements.txt. Optionally symfc and scipy are required for using additional features.

Development

The development of phono3py is managed on the develop branch of github phono3py repository.

  • Github issues is the place to discuss about phono3py issues.

  • Github pull request is the place to request merging source code.

  • Formatting rules are found in pyproject.toml.

  • Not strictly, but VSCode's settings.json may be written like below

    "ruff.lint.args": [
        "--config=${workspaceFolder}/pyproject.toml",
    ],
    "[python]": {
        "editor.defaultFormatter": "charliermarsh.ruff",
        "editor.codeActionsOnSave": {
            "source.organizeImports": "explicit"
        }
    },
    
  • Use of pre-commit (https://pre-commit.com/) is encouraged.

    • Installed by pip install pre-commit, conda install pre_commit or see https://pre-commit.com/#install.
    • pre-commit hook is installed by pre-commit install.
    • pre-commit hook is run by pre-commit run --all-files.

Documentation

Phono3py user documentation is written using python sphinx. The source files are stored in doc directory. Please see how to write the documentation at doc/README.md.

How to run tests

Tests are written using pytest. To run tests, pytest has to be installed. The tests can be run by

% pytest