diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..567d636 --- /dev/null +++ b/.gitignore @@ -0,0 +1,55 @@ +# Python +__pycache__/ +*.py[cod] +*.pyo +*.pyd +*.so +*.egg +*.egg-info/ +dist/ +build/ +eggs/ +parts/ +var/ +sdist/ +develop-eggs/ +.installed.cfg +lib/ +lib64/ + +# Virtual environments +.venv/ +venv/ +env/ + +# uv +.uv/ + +# pytest +.pytest_cache/ +.cache/ + +# Coverage +.coverage +.coverage.* +htmlcov/ +coverage.xml + +# mypy / pyright +.mypy_cache/ +.pyright/ +pyrightconfig.json + +# IDEs +.idea/ +.vscode/ +*.swp +*.swo +*~ + +# macOS +.DS_Store + +# Distribution / packaging +*.tar.gz +*.whl