40 lines
324 B
Plaintext
40 lines
324 B
Plaintext
# Bytecode
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
|
|
# Virtual env
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Build / dist
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
*.egg
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Data (optional)
|
|
data/*.csv
|
|
data/*.xlsx
|
|
!data/.gitkeep
|
|
|
|
# Jupyter
|
|
.ipynb_checkpoints/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|