44 lines
313 B
Plaintext
44 lines
313 B
Plaintext
|
|
# Git
|
||
|
|
.git
|
||
|
|
.gitignore
|
||
|
|
|
||
|
|
# Python
|
||
|
|
__pycache__/
|
||
|
|
*.py[cod]
|
||
|
|
*$py.class
|
||
|
|
*.so
|
||
|
|
.Python
|
||
|
|
venv/
|
||
|
|
env/
|
||
|
|
ENV/
|
||
|
|
.venv
|
||
|
|
|
||
|
|
# IDE
|
||
|
|
.vscode/
|
||
|
|
.idea/
|
||
|
|
*.swp
|
||
|
|
*.swo
|
||
|
|
*~
|
||
|
|
|
||
|
|
# Environment
|
||
|
|
.env
|
||
|
|
.env.local
|
||
|
|
|
||
|
|
# Build
|
||
|
|
build/
|
||
|
|
dist/
|
||
|
|
*.egg-info/
|
||
|
|
|
||
|
|
# Docker
|
||
|
|
Dockerfile
|
||
|
|
.dockerignore
|
||
|
|
|
||
|
|
# Documentation
|
||
|
|
README.md
|
||
|
|
*.md
|
||
|
|
|
||
|
|
# Test
|
||
|
|
.pytest_cache/
|
||
|
|
.coverage
|
||
|
|
htmlcov/
|