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

# exclude Python objects
*.pyc
*.pyo

# exclude Pickle files
*.pck
*.pkl

# exclude gzip files
*.gzip
*.gz

# exclude cache directories
**/__pycache__

# exclude Jupyter checkpoints
**/.ipynb_checkpoints

# exclude generated files
html/
dist/
build/
coverage/
pypeecdocs/
pypeec.egg-info/

# exclude scratch directory
scratch/

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

# exclude virtual environments
venv/
cenv/

# exclude the PyCharm project
.idea/
