Fix #7: Add .gitignore to exclude __pycache__ and .pyc files
Browse files- .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 |
+
*~
|