# Git .git .gitignore # Python __pycache__ *.pyc *.pyo *.pyd .Python pip-log.txt pip-delete-this-directory.txt .tox .pytest_cache nosetests.xml .cache # Virtual environments venv/ env/ ENV/ .venv/ # IDEs .vscode/ .idea/ *.swp *.swo # OS .DS_Store .DS_Store? ._* .Spotlight-V100 .Trashes ehthumbs.db Thumbs.db # Tests and coverage (not needed in production) tests/ htmlcov/ .coverage .coverage.* coverage.xml *.cover # Development scripts (not needed in production) scripts/ # Docker files Dockerfile docker-compose.yml docker-compose.dev.yml .dockerignore # Documentation (optional in production) README.md CHANGELOG.md LICENSE docs/ # Development dependencies and tools requirements-dev.txt Makefile .flake8 pytest.ini pyproject.toml # Backup files *.backup *.bak data/*.backup # Environment files (use environment variables in Docker) .env* # Temporary files and logs *.tmp *.temp temp/ tmp/ logs/ *.log # Version files _version.py