53 lines
425 B
Plaintext
53 lines
425 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Python
|
|
__pycache__
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
*.egg-info
|
|
dist
|
|
build
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
|
|
# Documentation
|
|
docs/
|
|
*.md
|
|
!README.md
|
|
|
|
# Development
|
|
.pre-commit-config.yaml
|
|
requirements-dev.txt
|
|
|
|
# Output and test files
|
|
output/
|
|
input/
|
|
*.mp4
|
|
*.m4v
|
|
*.weights
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|