# Ignore Python bytecode files __pycache__/ *.py[cod] # Ignore distribution / packaging files build/ dist/ *.egg-info/ .eggs/ wheels/ # Ignore virtual environments .env .venv env/ venv/ ENV/ env.bak/ venv.bak/ # Ignore test and coverage reports htmlcov/ .tox/ .nox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover *.py,cover .hypothesis/ .pytest_cache/ cover/ # Ignore Jupyter Notebook checkpoints .ipynb_checkpoints # Ignore IPython profile directories profile_default/ ipython_config.py # Ignore pyenv files .python-version # Ignore Poetry lock file poetry.lock # Ignore VS Code settings .vscode/ # Ignore Dockerfile and Dockerignore itself Dockerfile .dockerignore # Ignore Git files .git/ .gitignore # Ignore logs and temporary files *.log *.tmp