Skip to content

Commit

Permalink
add gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
eliotbyte committed Sep 30, 2024
1 parent 1fd86c5 commit 2a81d4b
Showing 1 changed file with 117 additions and 0 deletions.
117 changes: 117 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
# Virtual environment directories
venv/
.venv/
env/
ENV/

# Python cache files
__pycache__/
*.py[cod]
*$py.class

# Distribution / packaging
build/
dist/
*.egg-info/
.eggs/
*.egg

# Downloads directory
downloads/

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

# Unit test / coverage reports
htmlcov/
.coverage
.tox/
.pytest_cache/

# PyInstaller
*.manifest
*.spec

# Jupyter Notebook checkpoints
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# Environments
.env
.env.local
.env.*.local
.envrc
*.env

# Editor directories and files
.idea/
.vscode/
*.sublime-project
*.sublime-workspace

# OS-generated files
.DS_Store
Thumbs.db

# Logs
*.log

# Temporary files
*.swp
*.tmp
*.temp

# MacOS
._*

# Coverage reports
coverage.xml
nosetests.xml

# mypy
.mypy_cache/

# Pylint reports
pylint-report.txt

# Bandit reports
bandit-report.txt

# Sphinx documentation
docs/_build/

# Wheel build files
*.whl

# C extensions
*.so

# Static files cache (Django)
staticfiles/

# Local dev settings
local_settings.py

# Pyre type checker
.pyre/

# Profiling data
.prof

# Test results
test-results/

# GitHub workflows (if any)
.github/

# Other
node_modules/

0 comments on commit 2a81d4b

Please sign in to comment.