36 lines
313 B
Plaintext
36 lines
313 B
Plaintext
# Build artifacts
|
|
build/
|
|
*.egg-info/
|
|
*.egg
|
|
|
|
# Python cache
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.venv
|
|
|
|
# IDE files (optional)
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
|
|
# Distribution / packaging
|
|
dist/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
|
|
# pytest / coverage
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# mypy
|
|
.mypy_cache/
|