Skip to content

Commit

Permalink
Update .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
cneskey authored Feb 22, 2024
1 parent f0014c1 commit 75b0869
Showing 1 changed file with 62 additions and 64 deletions.
126 changes: 62 additions & 64 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,21 +1,31 @@
# Debugging notebooks
*.ipynb

# VSCode
.vscode/

# Byte-compiled / optimized / DLL files
__pycache__/
# Python related
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
__pycache__/
*.egg-info/
*.egg
.Python
celerybeat-schedule
*.sage.py
local_settings.py

# Jupyter Notebook
*.ipynb
.ipynb_checkpoints

# Virtual Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
.python-version

# Packaging
build/
develop-eggs/
dist/
downloads/
eggs/
Expand All @@ -26,22 +36,10 @@ parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# 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

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

# Unit test / coverage reports
# Testing
htmlcov/
.tox/
.coverage
Expand All @@ -53,58 +51,58 @@ coverage.xml
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot
# Documentation
docs/_build/
/site

# Django stuff:
*.log
local_settings.py
# IDEs and Editors
.vscode/
.idea/
.spyderproject
.spyproject
.ropeproject
.mypy_cache/

# Databases
db.sqlite3

# Flask stuff:
# Flask
instance/
.webassets-cache

# Scrapy stuff:
.scrapy
# Django
*.log

# Sphinx documentation
docs/_build/
# Scrapy
.scrapy

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# pyenv
.python-version
# OS generated files
.DS_Store
Thumbs.db

# celery beat schedule file
celerybeat-schedule
# Vim
*.swp

# SageMath parsed files
*.sage.py
# Secrets
.secrets
.env.local

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject
# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Rope project settings
.ropeproject
# PyInstaller
*.manifest
*.spec

# mkdocs documentation
/site
# Translations
*.mo
*.pot

# mypy
.mypy_cache/
# Dependency Management
poetry.lock
Pipfile
Pipfile.lock

0 comments on commit 75b0869

Please sign in to comment.