# List of files to ignore for Git.
#
# Thomas Guillod - Dartmouth College
# Mozilla Public License Version 2.0

# exclude Python objects
*.pyc
*.pyo

# exclude temp files
*.log
*.bak

# exclude gzip files
*.gzip
*.gz

# exclude pickle files
*.pck
*.pkl
*.pickle

# exclude msgpack files
*.mpk
*.msg
*.msgpack

# exclude VTK files
*.vtk

# exclude cache directories
**/__pycache__

# exclude Jupyter checkpoints
**/.ipynb_checkpoints

# exclude autogenerated files
pypeec/data/version.txt
pypeec/data/examples.tar.xz
pypeec/data/documentation.tar.xz

# exclude package data
dist/
build/
*.egg-info/

# exclude generated folders
html/
website/
coverage/

# exclude Sphinx data
docs/_static/
docs/_templates/

# exclude temporary folders
scratch/
temp/

# exclude the IDE folders
.vscode/
.idea/
