rogermt commited on
Commit
f12c571
·
verified ·
1 Parent(s): 6062e9a

Fix #7: Add .gitignore to exclude __pycache__ and .pyc files

Browse files
Files changed (1) hide show
  1. .gitignore +11 -0
.gitignore ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ __pycache__/
2
+ *.pyc
3
+ *.pyo
4
+ .DS_Store
5
+ *.egg-info/
6
+ dist/
7
+ build/
8
+ .eggs/
9
+ *.swp
10
+ *.swo
11
+ *~