# ignore all keys files, denoted using .apikeys filetype
# sending private API keys to github is a really bad idea
src/ChattingBox/*/*.apikeys

# ignore all __pycache__ files
*/__pycache__/*
*/*/__pycache__/*
*/*/*/__pycache__/*
__pycache__/*

#ignore wheel files since they can be gotten through pip
dist/*

#ignore dist files that are archived
archives/*
archives/*/*