# Git
.git
.gitignore
.gitattributes

# Python
__pycache__
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Virtual environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# IDE
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store

# Testing
.pytest_cache/
.coverage
.coverage.*
htmlcov/
coverage.xml
coverage.json
.tox/
.hypothesis/
.mypy_cache/
.ruff_cache/
.dmypy.json
dmypy.json

# Documentation
docs/_build/
docs/.doctrees/
*.md
!README.md

# CI/CD
.github/
.gitlab-ci.yml
.travis.yml

# LinkedIn drafts and temp files
.linkedin_drafts/
*.log
*.tmp

# Docker
Dockerfile
docker-compose.yml
.dockerignore

# Examples and tests (not needed in production)
examples/
tests/
benchmarks/
test_files/

# Development files
Makefile
.pre-commit-config.yaml
pyproject.toml.bak

# Lock files (using requirements in Dockerfile instead)
poetry.lock
Pipfile.lock

# artifacts
artifacts/
