50 lines
733 B
Plaintext
50 lines
733 B
Plaintext
# ============== Python ==============
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
*.egg-info/
|
|
*.egg
|
|
dist/
|
|
build/
|
|
|
|
# ============== Virtual Environment ==============
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
|
|
# ============== IDE / Editor ==============
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
.qodo/
|
|
|
|
# ============== Testing ==============
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
coverage.xml
|
|
*.cover
|
|
|
|
# ============== Type Checking ==============
|
|
.mypy_cache/
|
|
.pyright/
|
|
|
|
# ============== Linting ==============
|
|
.ruff_cache/
|
|
|
|
# ============== Environment ==============
|
|
.env
|
|
.env.local
|
|
*.log
|
|
|
|
# ============== OS Generated ==============
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# ============== Project Specific ==============
|
|
# Output directory for processed images
|
|
tests/assets/output/
|