File tree Expand file tree Collapse file tree 1 file changed +56
-0
lines changed
Expand file tree Collapse file tree 1 file changed +56
-0
lines changed Original file line number Diff line number Diff line change 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 /
You can’t perform that action at this time.
0 commit comments