Skip to content

Commit 0b31265

Browse files
authored
add gitignore (#139)
1 parent bcdb6b5 commit 0b31265

File tree

1 file changed

+68
-0
lines changed

1 file changed

+68
-0
lines changed

.gitignore

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# Distribution / packaging
7+
.Python
8+
build/
9+
develop-eggs/
10+
dist/
11+
downloads/
12+
eggs/
13+
.eggs/
14+
lib/
15+
lib64/
16+
parts/
17+
sdist/
18+
var/
19+
wheels/
20+
*.egg-info/
21+
.installed.cfg
22+
*.egg
23+
24+
# PyInstaller
25+
# Usually these files are written by a python script from a template
26+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
27+
*.manifest
28+
*.spec
29+
30+
# Installer logs
31+
pip-log.txt
32+
pip-delete-this-directory.txt
33+
34+
35+
# Jupyter Notebook
36+
.ipynb_checkpoints
37+
38+
# pyenv
39+
.python-version
40+
41+
# Environments
42+
.env
43+
.venv
44+
env/
45+
venv/
46+
ENV/
47+
env.bak/
48+
venv.bak/
49+
50+
# Spyder project settings
51+
.spyderproject
52+
.spyproject
53+
54+
# Rope project settings
55+
.ropeproject
56+
57+
# mkdocs documentation
58+
/site
59+
60+
# mypy
61+
.mypy_cache/
62+
63+
# Miscelaneous
64+
.idea
65+
.vscode
66+
*.DS_Store
67+
*.db
68+
*.pptx

0 commit comments

Comments
 (0)