Skip to content

Commit 99a2955

Browse files
committed
Merge pull request adafruit#75 from davidmmiller/add_gitignore
added file .gitignore
2 parents 2d4678f + eec1116 commit 99a2955

File tree

1 file changed

+56
-0
lines changed

1 file changed

+56
-0
lines changed

.gitignore

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# Python specific .gitignore
2+
# GitHub recommended entries from https://github.com/github/gitignore
3+
4+
# Byte-compiled / optimized / DLL files
5+
__pycache__/
6+
*.py[cod]
7+
8+
# C extensions
9+
*.so
10+
11+
# Distribution / packaging
12+
.Python
13+
env/
14+
bin/
15+
build/
16+
develop-eggs/
17+
dist/
18+
eggs/
19+
lib/
20+
lib64/
21+
parts/
22+
sdist/
23+
var/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
28+
# Installer logs
29+
pip-log.txt
30+
pip-delete-this-directory.txt
31+
32+
# Unit test / coverage reports
33+
htmlcov/
34+
.tox/
35+
.coverage
36+
.cache
37+
nosetests.xml
38+
coverage.xml
39+
40+
# Translations
41+
*.mo
42+
43+
# Mr Developer
44+
.mr.developer.cfg
45+
.project
46+
.pydevproject
47+
48+
# Rope
49+
.ropeproject
50+
51+
# Django stuff:
52+
*.log
53+
*.pot
54+
55+
# Sphinx documentation
56+
docs/_build/

0 commit comments

Comments
 (0)