Skip to content

Commit 440b7ec

Browse files
committed
Add gitignore
1 parent 743bbc5 commit 440b7ec

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+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.so
6+
.Python
7+
build/
8+
develop-eggs/
9+
dist/
10+
downloads/
11+
eggs/
12+
.eggs/
13+
lib/
14+
lib64/
15+
parts/
16+
sdist/
17+
var/
18+
wheels/
19+
*.egg-info/
20+
.installed.cfg
21+
*.egg
22+
23+
# Virtual environments
24+
.venv/
25+
venv/
26+
env/
27+
ENV/
28+
29+
# Testing
30+
.pytest_cache/
31+
.coverage
32+
.coverage.*
33+
htmlcov/
34+
.tox/
35+
.nox/
36+
37+
# Type checking
38+
.mypy_cache/
39+
.pytype/
40+
41+
# IDEs
42+
.idea/
43+
.vscode/
44+
*.swp
45+
*.swo
46+
*~
47+
48+
# OS
49+
.DS_Store
50+
Thumbs.db
51+
52+
# Project specific
53+
.ai/
54+

0 commit comments

Comments
 (0)