# Ignore python bytecode files __pycache__/ # Ignore pip's log file pip-log.txt # Ignore the .egg-info directory created by setuptools *.egg-info/ # Ignore the .tox directory created by tox .tox/ # Ignore the cache directory created by pip pip-cache/ # Ignore the .pytest_cache directory created by pytest .pytest_cache/ # Ignore the .mypy_cache directory created by mypy .mypy_cache/ # Ignore the .venv directory created by venv .venv/ # Ignore the .vscode directory created by vscode .vscode/ # Ignore the .idea directory created by intellij .idea/