79 lines
727 B
Plaintext
79 lines
727 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Python
|
|
__pycache__
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
pip-wheel-metadata/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
.pytest_cache/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
|
|
# Virtual Environments
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
.ropeproject
|
|
|
|
# Project specific
|
|
.cache/
|
|
.ruff_cache/
|
|
*.db
|
|
.pytest_cache/
|
|
|
|
# Docker
|
|
.docker
|
|
.dockerignore
|
|
Dockerfile
|
|
|
|
# Build artifacts
|
|
.flatpak-builder/
|
|
build-dir/
|
|
|
|
# Node (если используется)
|
|
node_modules/
|
|
npm-debug.log
|
|
yarn-error.log
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# app
|
|
tests/
|