# ----------------------------------------------------------------------------- # Python runtime and bytecode # ----------------------------------------------------------------------------- __pycache__/ *.py[cod] *$py.class # ----------------------------------------------------------------------------- # Virtual environments # ----------------------------------------------------------------------------- .venv/ venv/ env/ ENV/ # ----------------------------------------------------------------------------- # Tool caches and local test artifacts # ----------------------------------------------------------------------------- .pytest_cache/ .mypy_cache/ .ruff_cache/ .coverage .coverage.* htmlcov/ # ----------------------------------------------------------------------------- # Local environment and runtime configuration # Keep these narrow so docs and fixtures are not accidentally ignored. # ----------------------------------------------------------------------------- /.env /.env.* !/.env.example !/config.yaml.example # ----------------------------------------------------------------------------- # Local temp/debug folders created during development # ----------------------------------------------------------------------------- /.tmp/ /.tmp_debug/ /pytest-of-saran/ # ----------------------------------------------------------------------------- # Local planning notes # ----------------------------------------------------------------------------- /docs/ # ----------------------------------------------------------------------------- # Build and packaging artifacts # ----------------------------------------------------------------------------- build/ dist/ site/ *.egg-info/ .eggs/ pip-wheel-metadata/ # ----------------------------------------------------------------------------- # Logs and local databases # ----------------------------------------------------------------------------- *.log *.pid *.sqlite3 # ----------------------------------------------------------------------------- # IDE and editor files # ----------------------------------------------------------------------------- .idea/ .vscode/ *.swp *.swo # ----------------------------------------------------------------------------- # OS-generated files # ----------------------------------------------------------------------------- .DS_Store Thumbs.db desktop.ini