From 9a58766525f29845eaa930819e9c096b9991d6cf Mon Sep 17 00:00:00 2001 From: JJ Date: Wed, 19 Mar 2025 22:22:10 +0000 Subject: first commit --- .gitignore | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 .gitignore (limited to '.gitignore') diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0f0b92d --- /dev/null +++ b/.gitignore @@ -0,0 +1,53 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# Virtual environment +venv/ +.env/ + +# Distribution / packaging +build/ +dist/ +*.egg-info/ +*.spec + +# Logs and temporary files +*.log +*.tmp + +# Jupyter Notebook checkpoints +.ipynb_checkpoints/ + +# VS Code settings +.vscode/ + +# macOS system files +.DS_Store + +# Dependencies +pip-log.txt +pip-delete-this-directory.txt + +# Testing +.coverage +.tox/ +nosetests.xml +pytest_cache/ + +# MyPy +.mypy_cache/ + +# PyInstaller +*.manifest +*.spec + +# CLI-specific files +*.exe +*.out +*.app + +# Custom user files (if any) +local_settings.py +config.json -- cgit v1.2.3