50 lines
516 B
Plaintext
50 lines
516 B
Plaintext
# Python specific
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
*.so
|
|
|
|
# Environment variables
|
|
.env
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
*.egg-info/
|
|
|
|
# Docker specific
|
|
*.log
|
|
docker-compose.override.yml
|
|
.dockerignore
|
|
|
|
# Byte-compiled / optimized / DLL files
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
|
|
# Distribution / packaging
|
|
build/
|
|
dist/
|
|
*.egg
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Unit test / coverage reports
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
*.cover
|
|
*.py,cover
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
|
|
# IDEs and editors
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*.swn |