diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..948e28f --- /dev/null +++ b/.gitignore @@ -0,0 +1,35 @@ +# Build artifacts +build/ +*.egg-info/ +*.egg + +# Python cache +__pycache__/ +*.pyc +*.pyo + +# Virtual environments +venv/ +env/ +ENV/ +.venv + +# IDE files (optional) +.vscode/ +.idea/ +*.swp + +# Distribution / packaging +dist/ +parts/ +sdist/ +var/ +wheels/ + +# pytest / coverage +.pytest_cache/ +.coverage +htmlcov/ + +# mypy +.mypy_cache/