61 lines
463 B
Plaintext
61 lines
463 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Python
|
|
__pycache__
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.venv
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
.hypothesis/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Documentation
|
|
*.md
|
|
docs/
|
|
|
|
# Nix
|
|
result/
|
|
.direnv/
|
|
.sisyphus/
|
|
|
|
# Docker
|
|
docker-compose.yml
|
|
.dockerignore
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# CI/CD
|
|
.github/
|
|
.gitlab-ci.yml
|
|
Jenkinsfile
|
|
|
|
# Logs
|
|
*.log
|