1+ # ===============================
2+ # Python bytecode / caches
3+ # ===============================
4+ __pycache__ /
5+ * .py [cod ]
6+ * $py.class
7+
8+ # ===============================
9+ # Virtual environments
10+ # ===============================
11+ .venv /
12+ venv /
13+ ENV /
14+ env /
15+
16+ # ===============================
17+ # Test / coverage artifacts
18+ # ===============================
19+ .pytest_cache /
20+ .coverage
21+ .coverage. *
22+ htmlcov /
23+ .tox /
24+
25+ # ===============================
26+ # Build / packaging outputs
27+ # ===============================
28+ build /
29+ dist /
30+ * .egg-info /
31+
32+ # ===============================
33+ # Editor / OS junk
34+ # ===============================
35+ .vscode /
36+ .idea /
37+ .DS_Store
38+ Thumbs.db
39+
40+ # ===============================
41+ # Git / CI
42+ # ===============================
43+ .git /
44+ .gitignore
45+ .github /
46+
47+ # ===============================
48+ # Logs
49+ # ===============================
50+ * .log
51+
52+ # ===============================
53+ # Local tooling caches
54+ # ===============================
55+ .ruff_cache /
56+ .mypy_cache /
57+ .isort_cache /
58+
59+ # ===============================
60+ # Node (just in case)
61+ # ===============================
62+ node_modules /
63+
64+ # ===============================
65+ # Docker files you DON'T need inside image
66+ # ===============================
67+ docker-compose.yml
68+
69+ # ===============================
70+ # IMPORTANT: DO NOT IGNORE THESE
71+ # ===============================
72+ # pyproject.toml
73+ # uv.lock
74+ # src/
0 commit comments