Skip to content

Commit 0aaa453

Browse files
committed
Update .gitignore to exclude virtualenv and build files
1 parent 93f61e6 commit 0aaa453

File tree

1 file changed

+32
-4
lines changed

1 file changed

+32
-4
lines changed

gitignore

Lines changed: 32 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,37 @@
1+
# Byte-compiled / optimized / DLL files
12
__pycache__/
23
*.py[cod]
3-
*.log
4-
.env
5-
.venv
4+
*$py.class
5+
6+
# Virtual environments
7+
env/
68
venv/
9+
.venv/
10+
11+
# Installer logs
12+
pip-log.txt
13+
pip-delete-this-directory.txt
14+
15+
# Unit test / coverage reports
16+
htmlcov/
17+
.tox/
18+
.nox/
19+
coverage.*
20+
.cache
21+
nosetests.xml
22+
*.cover
23+
.hypothesis/
24+
25+
# PyInstaller
26+
dist/
27+
build/
28+
*.spec
29+
30+
# Misc
31+
*.log
32+
*.tmp
33+
*.bak
34+
35+
# System files
736
.DS_Store
837
Thumbs.db
9-
# .vscode/

0 commit comments

Comments
 (0)