Skip to content

Commit c5ffc82

Browse files
author
Ryan P Kilby
committed
Add gitignore
1 parent aa50d18 commit c5ffc82

File tree

1 file changed

+62
-0
lines changed

1 file changed

+62
-0
lines changed

.gitignore

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
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+
MANIFEST
24+
25+
# Unit test / coverage reports
26+
htmlcov/
27+
.tox/
28+
.coverage
29+
.coverage.*
30+
.cache
31+
nosetests.xml
32+
coverage.xml
33+
*.cover
34+
.hypothesis/
35+
.pytest_cache/
36+
37+
# Translations
38+
*.mo
39+
*.pot
40+
41+
# Django stuff:
42+
*.log
43+
local_settings.py
44+
db.sqlite3
45+
46+
# Sphinx documentation
47+
docs/_build/
48+
49+
# Jupyter Notebook
50+
.ipynb_checkpoints
51+
52+
# pyenv
53+
.python-version
54+
55+
# Environments
56+
.env
57+
.venv
58+
env/
59+
venv/
60+
ENV/
61+
env.bak/
62+
venv.bak/

0 commit comments

Comments
 (0)