25 lines
230 B
Plaintext
25 lines
230 B
Plaintext
# Python bytecode
|
|
*.pyc
|
|
*.pyo
|
|
|
|
# Cache
|
|
**/__pycache__/
|
|
**/*.egg-info/
|
|
**/.pytest_cache/
|
|
.coverage
|
|
.htmlcov/
|
|
|
|
# Environment
|
|
.env
|
|
.venv/
|
|
.env/*
|
|
!/.env.example
|
|
|
|
# Build artifacts
|
|
*.map
|
|
dist/
|
|
build/
|
|
|
|
# Generated test files
|
|
tests/*.py
|