30 lines
224 B
Plaintext
30 lines
224 B
Plaintext
|
|
# Git
|
||
|
|
.git
|
||
|
|
.gitignore
|
||
|
|
|
||
|
|
# Documentation
|
||
|
|
*.md
|
||
|
|
README*
|
||
|
|
|
||
|
|
# Python cache
|
||
|
|
__pycache__
|
||
|
|
*.pyc
|
||
|
|
*.pyo
|
||
|
|
*.pyd
|
||
|
|
.pytest_cache
|
||
|
|
.coverage
|
||
|
|
htmlcov/
|
||
|
|
|
||
|
|
# Environment files
|
||
|
|
.env*
|
||
|
|
*.env
|
||
|
|
|
||
|
|
# IDE
|
||
|
|
.vscode/
|
||
|
|
.idea/
|
||
|
|
*.swp
|
||
|
|
*.swo
|
||
|
|
|
||
|
|
# Build artifacts
|
||
|
|
*.log
|