From fc68c243bb20eec38d85d24cfe707d69f07806ff Mon Sep 17 00:00:00 2001 From: tigermren Date: Wed, 23 Apr 2025 00:06:39 +0800 Subject: [PATCH] add gitignore --- .gitignore | 65 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3775a45 --- /dev/null +++ b/.gitignore @@ -0,0 +1,65 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg + +# Virtual Environment +venv/ +env/ +ENV/ +.env + +# IDE +.idea/ +.vscode/ +*.swp +*.swo +.DS_Store + +# Logs +*.log +logs/ + +# Testing +.coverage +.pytest_cache/ +htmlcov/ +.tox/ + +# Project specific +target_folder/ +output/ +temp/ + +# Jupyter Notebook +.ipynb_checkpoints + +# mypy +.mypy_cache/ + +# Distribution / packaging +.Python +*.pyc + +# Local development settings +.env.local +.env.development.local +.env.test.local +.env.production.local \ No newline at end of file