49 lines
544 B
Plaintext
49 lines
544 B
Plaintext
# Virtual environment
|
|
.venv/
|
|
|
|
# Python bytecode
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
|
|
# Distribution / packaging
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
|
|
# Poetry lock file (library — consumers pin their own dependencies)
|
|
poetry.lock
|
|
|
|
# Environment and secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Type checking
|
|
.mypy_cache/
|
|
|
|
# Linting
|
|
.ruff_cache/
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# AI assistant docs (not for version control)
|
|
DESIGN_DOCUMENT*.md
|
|
AGENTS.md
|
|
.claudeignore
|
|
CLAUDE.md
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
zkouska.py
|
|
.python-version |