File tree Expand file tree Collapse file tree 1 file changed +42
-20
lines changed
Expand file tree Collapse file tree 1 file changed +42
-20
lines changed Original file line number Diff line number Diff line change 1- # Python
1+ # Python build artifacts
22__pycache__ /
33* .pyc
44* .pyo
55* .pyd
66
7- # Virtual environment
7+ # Python package and virtual environment directories
88venv /
9- venv_backup /
10- env /
119.venv /
12-
13- # IDE / Editor specific files
14- .vscode /
10+ env /
11+ .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
1521.idea /
22+ .vscode /
23+ * .iml
1624* .swp
17- * .swo
18-
19- # Testing and Coverage
20- .pytest_cache /
21- .coverage
22- htmlcov /
25+ .DS_Store
2326
24- # Build artifacts
27+ # Build and distribution directories
2528build /
2629dist /
30+ *
2731* .egg-info /
32+ * .egg
33+
34+ # Testing and coverage artifacts
35+ .pytest_cache /
36+ .coverage
37+ htmlcov /
38+ cover /
2839
2940# Jupyter Notebook checkpoints
3041.ipynb_checkpoints /
3142
32- # OS generated files
33- .DS_Store
34- Thumbs.db
43+ # Data files (assuming large data files should not be committed)
44+ * .csv
45+ * .tsv
46+ * .feather
47+ * .parquet
48+ * .h5
49+ * .hdf5
3550
36- # Ruff cache
37- .ruff_cache /
51+ # Log files
52+ * .log
3853
39- # uv cache
54+ # Secrets and configuration (should be managed separately)
55+ .env
56+ * .env
57+ secrets.yaml
58+ config.ini
59+
60+ # Specific to Ruff, uv, and other tools
61+ .ruff_cache /
4062.uv /
You can’t perform that action at this time.
0 commit comments