Skip to content

Commit 6e621d6

Browse files
Create .gitignore
.gitignore
1 parent 47fcc50 commit 6e621d6

File tree

1 file changed

+87
-0
lines changed

1 file changed

+87
-0
lines changed

.gitignore

+87
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
*.egg-info/
24+
.installed.cfg
25+
*.egg
26+
MANIFEST
27+
28+
# PyInstaller
29+
# Usually these files are written by a Python script from a template
30+
*.manifest
31+
*.spec
32+
33+
# Installer logs
34+
pip-log.txt
35+
pip-delete-this-directory.txt
36+
37+
# Unit test / coverage reports
38+
htmlcov/
39+
.tox/
40+
.nox/
41+
.coverage
42+
.coverage.*
43+
.cache
44+
nosetests.xml
45+
coverage.xml
46+
*.cover
47+
*.py,cover
48+
.hypothesis/
49+
50+
# Environment variables
51+
.env
52+
.venv/
53+
env/
54+
venv/
55+
ENV/
56+
env.bak/
57+
venv.bak/
58+
59+
# IDEs and editors
60+
.idea/
61+
.vscode/
62+
*.sublime-project
63+
*.sublime-workspace
64+
65+
# Pytest
66+
.pytest_cache/
67+
68+
# Jupyter Notebook
69+
.ipynb_checkpoints
70+
71+
# macOS files
72+
.DS_Store
73+
.AppleDouble
74+
.LSOverride
75+
76+
# Windows files
77+
Thumbs.db
78+
ehthumbs.db
79+
Desktop.ini
80+
$RECYCLE.BIN/
81+
82+
# Python virtual environments
83+
.venv/
84+
.venv.bak/
85+
86+
# Local files
87+
*.local/

0 commit comments

Comments
 (0)