Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 63 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@
__pycache__/
*.py[cod]
*$py.class
*.idea/*
*.idea
# C extensions
*.so
.DS_Store

# Distribution / packaging
.Python
Expand All @@ -27,12 +23,73 @@ wheels/
*.egg
MANIFEST

# Virtual Environment
.venv/
venv/
env/
ENV/

# IDE specific files
.idea/
.vscode/
*.swp
*.swo
*~
.DS_Store

# Environment variables
.env
.env.local
.env.*.local

# Logs and databases
*.log
*.sql
*.sqlite

# Jupyter Notebook
.ipynb_checkpoints

# PyCharm
.idea/
.idea_modules/

# VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/

# Local development settings
local_settings.py
db.sqlite3
db.sqlite3-journal

# Mac OS specific
.DS_Store
.AppleDouble
.LSOverride
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt
Expand Down