# Git .git .gitignore # Python __pycache__ *.py[cod] *$py.class *.so .Python .env .venv venv/ ENV/ .eggs *.egg-info/ .pytest_cache/ .coverage htmlcov/ .mypy_cache/ # IDE .idea/ .vscode/ *.swp *.swo *~ # Docker Dockerfile* docker-compose*.yml .docker/ # Documentation *.md docs/ LICENSE # Tests tests/ test_*.py *_test.py conftest.py # CI/CD .github/ .gitlab-ci.yml .travis.yml Jenkinsfile # Misc *.log *.tmp .DS_Store Thumbs.db