58 lines
514 B
Text
58 lines
514 B
Text
|
# macOS system files
|
||
|
.DS_Store
|
||
|
.AppleDouble
|
||
|
.LSOverride
|
||
|
Icon
|
||
|
._*
|
||
|
|
||
|
# Python
|
||
|
__pycache__/
|
||
|
*.py[cod]
|
||
|
*$py.class
|
||
|
*.so
|
||
|
.Python
|
||
|
build/
|
||
|
develop-eggs/
|
||
|
dist/
|
||
|
downloads/
|
||
|
eggs/
|
||
|
.eggs/
|
||
|
lib/
|
||
|
lib64/
|
||
|
parts/
|
||
|
sdist/
|
||
|
var/
|
||
|
wheels/
|
||
|
*.egg-info/
|
||
|
.installed.cfg
|
||
|
*.egg
|
||
|
|
||
|
# Virtual Environment
|
||
|
venv/
|
||
|
ENV/
|
||
|
env/
|
||
|
.env
|
||
|
.venv
|
||
|
pip-log.txt
|
||
|
pip-delete-this-directory.txt
|
||
|
|
||
|
# IDE specific files
|
||
|
.idea/
|
||
|
.vscode/
|
||
|
*.swp
|
||
|
*.swo
|
||
|
*~
|
||
|
|
||
|
# Jupyter Notebook
|
||
|
.ipynb_checkpoints
|
||
|
|
||
|
# Testing
|
||
|
.coverage
|
||
|
.tox/
|
||
|
.pytest_cache/
|
||
|
htmlcov/
|
||
|
.coverage.*
|
||
|
coverage.xml
|
||
|
*.cover
|
||
|
|