mirror of
https://github.com/soxoj/maigret.git
synced 2026-05-07 06:24:35 +00:00
45 lines
451 B
Plaintext
45 lines
451 B
Plaintext
# Virtual Environment
|
|
venv/
|
|
.venv/
|
|
|
|
# Editor Configurations
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Python
|
|
__pycache__/
|
|
|
|
# Pip
|
|
src/
|
|
|
|
# Jupyter Notebook
|
|
.ipynb_checkpoints
|
|
*.ipynb
|
|
|
|
# Logs and backups
|
|
*.log
|
|
*.bak
|
|
|
|
# Output files, except requirements.txt
|
|
*.txt
|
|
!requirements.txt
|
|
|
|
# Comma-Separated Values (CSV) Reports
|
|
*.csv
|
|
|
|
# MacOS Folder Metadata File
|
|
.DS_Store
|
|
/reports/
|
|
|
|
# Testing
|
|
.coverage
|
|
dist/
|
|
htmlcov/
|
|
/test_*
|
|
|
|
# Maigret files
|
|
settings.json
|
|
|
|
# other
|
|
*.egg-info
|
|
build |