File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # ==========================================
2+ # Python - Cache files and compiled code
3+ # ==========================================
4+ __pycache__ /
5+ * .py [cod ]
6+ * $py.class
7+ * .so
8+ .Python
9+
10+ # ==========================================
11+ # Virtual environments
12+ # ==========================================
13+ venv /
14+ env /
15+ ENV /
16+ .env
17+ .venv
18+
19+ # ==========================================
20+ # Distribution, packaging, and builds
21+ # ==========================================
22+ build /
23+ develop-eggs /
24+ dist /
25+ downloads /
26+ eggs /
27+ .eggs /
28+ lib /
29+ lib64 /
30+ parts /
31+ sdist /
32+ var /
33+ wheels /
34+ share /python-wheels /
35+ * .egg-info /
36+ .installed.cfg
37+ * .egg
38+ MANIFEST
39+
40+ # ==========================================
41+ # Testing, coverage, and logs
42+ # ==========================================
43+ .pytest_cache /
44+ .coverage
45+ htmlcov /
46+ .pypy_cache /
47+ * .log
48+
49+ # ==========================================
50+ # System junk (Windows / macOS)
51+ # ==========================================
52+ * .DS_Store
53+ Thumbs.db
54+ desktop.ini
You can’t perform that action at this time.
0 commit comments