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
102 changes: 102 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
# Byte-compiled / caches
__pycache__/
*.py[cod]
*$py.class

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
*.manifest
*.spec

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

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

# Translations
*.mo
*.pot

# Jupyter
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

# pipenv / poetry
Pipfile.lock
.poetry/

# Virtual environments
env/
venv/
ENV/
env.bak/
.venv/
venv.bak/

# IDEs / editors
.vscode/
.idea/
*.sublime-workspace
*.sublime-project

# Editor temporary files
*~
*.swp
*.swo

# Project-specific caches
.mypy_cache/
.pytype/
.ruff_cache/
.pyre/
.ropeproject/

# C extensions
*.so

# OS files
.DS_Store
Thumbs.db

# Logs & databases
*.log
*.sql
*.sqlite3

# Secrets / env
.env
.env.*