-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
117 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ |