25 lines
221 B
Plaintext
25 lines
221 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
|