Add gitignore file

Pipfile.lock is ignored because it won't work between different
platforms if the dependency requirements diverge.

Python compilation products are ignored, as they are derived directly
from Python source files.
This commit is contained in:
Jeremy Saklad 2021-11-25 10:08:39 -06:00
parent c6ae446fa0
commit f934861f55
Signed by: Jeremy Saklad
GPG Key ID: 9CA2149583EDBF84
1 changed files with 7 additions and 0 deletions

7
.gitignore vendored Normal file
View File

@ -0,0 +1,7 @@
# Doesn't work with platform differences
Pipfile.lock
# Python compilation products
__pycache__/
*.pyc
*.pyo