37 lines
308 B
Text
37 lines
308 B
Text
# Python build artifacts
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Virtual environments
|
|
venv/
|
|
.venv/
|
|
env/
|
|
ENV/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
*.cover
|
|
|
|
# MyPy
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
|
|
# Ruff
|
|
.ruff_cache/
|
|
|
|
# Local config
|
|
.env
|
|
.env.local
|