Some checks failed
CI / test (push) Failing after 1s
Co-authored-by: Copilot <copilot@github.com>
27 lines
248 B
Plaintext
27 lines
248 B
Plaintext
# Python cache and bytecode
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
|
|
# Tool caches
|
|
.pytest_cache/
|
|
.ruff_cache/
|
|
.mypy_cache/
|
|
|
|
# Build artifacts
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
*.spec
|
|
|
|
# Coverage
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# IDE
|
|
.vscode/
|