# Git .git .gitignore # Python __pycache__ *.pyc *.pyo *.pyd .Python env pip-log.txt pip-delete-this-directory.txt .tox .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover *.log .DS_Store .mypy_cache .pytest_cache .hypothesis # Virtual environments venv/ env/ ENV/ .venv/ # IDE .vscode/ .idea/ *.swp *.swo *~ # OS .DS_Store Thumbs.db # Documentation *.md docs/ # Test files tests/ test_*.py *_test.py # Development tools .pre-commit-config.yaml .flake8 .black # Logs logs/ *.log # Temporary files tmp/ temp/ .tmp # Docker Dockerfile docker-compose*.yml .dockerignore # Jupyter notebooks *.ipynb .ipynb_checkpoints/ # Local data (will be mounted as volume) data/local_* data/temp_* # Build artifacts build/ dist/ *.egg-info/