Skip to content

Commit 7e6eb90

Browse files
committed
Add gitignore file
1 parent d834bf8 commit 7e6eb90

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

.gitignore

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# exclude data from source control by default
2+
/data/
3+
4+
# Byte-compiled / optimized / DLL files
5+
__pycache__/
6+
*.py[cod]
7+
*.pyc
8+
9+
# Installer logs
10+
pip-log.txt
11+
pip-delete-this-directory.txt
12+
13+
# Unit test / coverage reports
14+
htmlcov/
15+
.tox/
16+
.pytest_cache
17+
.coverage
18+
.coverage.*
19+
.cache
20+
nosetests.xml
21+
coverage.xml
22+
*.cover
23+
24+
# Jupyter NB Checkpoints
25+
.ipynb_checkpoints/
26+
27+
# VS Code
28+
.vscode/
29+
30+
# Spyder
31+
.spyproject/
32+
33+
# Mac OS-specific storage files
34+
.DS_Store
35+
36+
# VIM
37+
*.swp
38+
*.swo
39+
40+
# Pycharm
41+
.idea

0 commit comments

Comments
 (0)