76 lines
717 B
Plaintext
76 lines
717 B
Plaintext
# 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
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Testing
|
|
.coverage
|
|
.pytest_cache/
|
|
htmlcov/
|
|
.tox/
|
|
|
|
# Project specific
|
|
target_folder/
|
|
output/
|
|
temp/
|
|
|
|
# Jupyter Notebook
|
|
.ipynb_checkpoints
|
|
|
|
# mypy
|
|
.mypy_cache/
|
|
|
|
# Distribution / packaging
|
|
.Python
|
|
*.pyc
|
|
|
|
# Local development settings
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
src_folder
|
|
target_folder
|
|
app.log
|
|
__pycache__
|
|
data/doc_dest
|
|
data/doc_src
|
|
data/doc_intermediate
|
|
|
|
node_modules
|
|
backend/storage/ |