# Git .git .gitignore # Python __pycache__ *.py[cod] *$py.class *.so .Python venv/ .venv/ ENV/ env/ *.egg-info/ .eggs/ dist/ build/ # Testing .pytest_cache/ .coverage htmlcov/ .tox/ tests/ # IDE .idea/ .vscode/ *.swp *.swo # Data (use volumes instead) data/ # Documentation (not needed in container) documentation/ *.md !requirements.txt # Misc .DS_Store *.log