62 lines
609 B
Plaintext
62 lines
609 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Python
|
|
__pycache__
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
env
|
|
venv
|
|
.venv
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
.tox
|
|
.coverage
|
|
.coverage.*
|
|
.pytest_cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
*.log
|
|
.mypy_cache
|
|
.dmypy.json
|
|
dmypy.json
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Documentation
|
|
README.md
|
|
TUTORIAL.txt
|
|
|
|
# Development files
|
|
circle.png
|
|
|
|
# Node modules (if any)
|
|
node_modules
|
|
npm-debug.log*
|
|
|
|
# Vercel
|
|
vercel.json
|
|
|
|
# Large static files that can be re-generated
|
|
static/files/*.pkl
|
|
static/files/*.png
|
|
static/files/*.csv
|