Skip to content

Commit a0ea505

Browse files
committed
Add standard Python .gitignore
1 parent 84f16fc commit a0ea505

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

.gitignore

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# Distribution / packaging
7+
.Python
8+
build/
9+
dist/
10+
*.egg-info/
11+
.eggs/
12+
13+
# Virtual environments
14+
venv/
15+
.venv/
16+
env/
17+
18+
# Environment files
19+
.env
20+
.env.*
21+
22+
# Test / coverage
23+
.pytest_cache/
24+
.coverage
25+
.coverage.*
26+
htmlcov/
27+
28+
# Editor / OS
29+
.DS_Store
30+
.vscode/
31+
.idea/

0 commit comments

Comments
 (0)