File tree Expand file tree Collapse file tree 1 file changed +43
-46
lines changed
Expand file tree Collapse file tree 1 file changed +43
-46
lines changed Original file line number Diff line number Diff line change 1- # Python build artifacts
2- __pycache__ /
1+ # Python Byte-Code Files
32* .pyc
4- * .pyo
5- * .pyd
3+ __pycache__ /
4+
5+ # Distribution / Packaging
6+ * .egg-info /
7+ build /
8+ dist /
9+ * .tar.gz
10+ * .whl
11+
12+ # IDE / Editor specific
13+ .vscode /
14+ .idea /
15+ * .sublime-project
16+ * .sublime-workspace
617
7- # Python package and virtual environment directories
18+ # Virtual Environments
819venv /
920.venv /
1021env /
1122.env /
12- .eggs /
13- lib /
14- lib64 /
15- parts /
16- /site-packages /
17- /usr /lib /python3 /dist-packages /
18- /usr /lib /python4 /dist-packages /
19-
20- # IDE and editor configuration files
21- .idea /
22- .vscode /
23- * .iml
24- * .swp
25- .DS_Store
23+ ENV /
2624
27- # Build and distribution directories
28- build /
29- dist /
30- *
31- * .egg-info /
32- * .egg
33-
34- # Testing and coverage artifacts
25+ # Testing / Coverage
3526.pytest_cache /
3627.coverage
3728htmlcov /
38- cover /
39-
40- # Jupyter Notebook checkpoints
41- .ipynb_checkpoints /
4229
43- # Data files (assuming large data files should not be committed)
44- * .csv
45- * .tsv
46- * .feather
47- * .parquet
48- * .h5
49- * .hdf5
50-
51- # Log files
30+ # Log Files
5231* .log
5332
54- # Secrets and configuration (should be managed separately)
55- .env
56- * .env
57- secrets.yaml
58- config.ini
33+ # OS specific
34+ .DS_Store
35+ Thumbs.db
5936
60- # Specific to Ruff, uv, and other tools
37+ # Jupyter Notebook Checkpoints
38+ .ipynb_checkpoints /
39+
40+ # Ruff Cache
6141.ruff_cache /
42+
43+ # uv Cache
6244.uv /
45+
46+ # Temporary files
47+ * .tmp
48+
49+ # Static files for web frameworks (example, not directly applicable here)
50+ # static_files/
51+ # media/
52+
53+ # Git specific
54+ .git /
55+ .gitignore
56+
57+ # Secrets (though typically managed externally or via env vars)
58+ # *.env
59+ # secrets.yaml
You can’t perform that action at this time.
0 commit comments