77 lines
No EOL
745 B
Text
77 lines
No EOL
745 B
Text
# 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
|
|
|
|
# Virtual Environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
.venv
|
|
|
|
# IDE and Editor
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
# Environment Variables
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Testing and Coverage
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
.pytest_cache/
|
|
.tox/
|
|
.hypothesis/
|
|
*.cover
|
|
.nose*
|
|
|
|
# Node/npm (for UI development)
|
|
node_modules/
|
|
npm-debug.log
|
|
yarn-error.log
|
|
package-lock.json
|
|
|
|
# OS-specific
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.log
|
|
|
|
# Docker
|
|
.dockerignore
|
|
|
|
# Misc
|
|
.cache/
|
|
*.bak
|
|
*.tmp |