Skip to content

Commit d945e9a

Browse files
authored
Merge pull request #4 from hrosicka/chore/add-gitignore
chore: add .gitignore
2 parents a497745 + 4f015c9 commit d945e9a

1 file changed

Lines changed: 54 additions & 0 deletions

File tree

.gitignore

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
# ==========================================
2+
# Python - Cache files and compiled code
3+
# ==========================================
4+
__pycache__/
5+
*.py[cod]
6+
*$py.class
7+
*.so
8+
.Python
9+
10+
# ==========================================
11+
# Virtual environments
12+
# ==========================================
13+
venv/
14+
env/
15+
ENV/
16+
.env
17+
.venv
18+
19+
# ==========================================
20+
# Distribution, packaging, and builds
21+
# ==========================================
22+
build/
23+
develop-eggs/
24+
dist/
25+
downloads/
26+
eggs/
27+
.eggs/
28+
lib/
29+
lib64/
30+
parts/
31+
sdist/
32+
var/
33+
wheels/
34+
share/python-wheels/
35+
*.egg-info/
36+
.installed.cfg
37+
*.egg
38+
MANIFEST
39+
40+
# ==========================================
41+
# Testing, coverage, and logs
42+
# ==========================================
43+
.pytest_cache/
44+
.coverage
45+
htmlcov/
46+
.pypy_cache/
47+
*.log
48+
49+
# ==========================================
50+
# System junk (Windows / macOS)
51+
# ==========================================
52+
*.DS_Store
53+
Thumbs.db
54+
desktop.ini

0 commit comments

Comments
 (0)