# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
.Python
*.egg
*.egg-info/
dist/
# but DO track the vendored upstream Mastodon OpenAPI schema (re-vendored by
# .github/workflows/vendor-openapi-schema.yml). Without this the blanket dist/
# rule above hides it and the contract tests silently skip.
!mastodon-openapi/dist/
!mastodon-openapi/dist/schema.json
build/
eggs/
parts/
var/
sdist/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
MANIFEST

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

# Testing
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
htmlcov/
junit.xml

# Type checking
.mypy_cache/
.dmypy.json
dmypy.json
.pyre/

# Linting
.ruff_cache/

# Docs
site/
docs/_build/

# Build history
.build_logs/
.build_history/
.uv/

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

# Local dev SQLite database (file-backed mode)
mastodon_mock.db
*.db

# Vendored reference copy of Mastodon.py (not a build dependency; installed from PyPI)
/Mastodon.py/

# Built Angular admin panel / client UI (generated; shipped in the wheel via build hook)
mastodon_mock/_ui_dist/

# Angular UI working directories
ui/node_modules/
ui/.angular/
ui/dist/

# Local self-signed TLS dev certs (see README for how to generate)
.dev_certs/
