Skip to content

Commit 58a69dc

Browse files
author
Piet Delport
committed
Add .gitignore for Python
0 parents  commit 58a69dc

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.gitignore

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Python bytecode
2+
*.pyc
3+
*.pyo
4+
__pycache__
5+
6+
# setuptools-generated
7+
*.egg-info/
8+
.eggs/
9+
build/
10+
dist/
11+
12+
# Tox working directory
13+
.tox
14+
15+
# pytest cache directory
16+
.cache/
17+
18+
# Test coverage
19+
.coverage
20+
htmlcov

0 commit comments

Comments
 (0)