# 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

# exclude cache directories
**/__pycache__

# exclude Jupyter checkpoints
**/.ipynb_checkpoints

# exclude packinging files
html/*
dist/*
build/*
pypeecdocs/*
pypeec.egg-info/*

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

# exclude virtual environments
venv/*
cenv/*

# exclude scratch directory
scratch/*

# exclude the PyCharm project
.idea/*
