From b3efad8d1a4062ccad21ca224af30e0b6e89b9e5 Mon Sep 17 00:00:00 2001 From: leo Date: Tue, 23 Sep 2025 03:14:44 -0300 Subject: inicio --- .gitignore | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .gitignore (limited to '.gitignore') diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8d9f86d --- /dev/null +++ b/.gitignore @@ -0,0 +1,45 @@ +# Created by venv; see https://docs.python.org/3/library/venv.html + +# Byte-compiled / cache files +__pycache__/ +*.py[cod] +*.pyo +*.pyd + +# Virtual environment +venv/ +env/ +.venv/ +ENV/ +env.bak/ +*.env +pyvenv.cfg + +# VSCode or other IDE config +.vscode/ +.idea/ + +# Mac / Linux hidden files +.DS_Store +Thumbs.db + +# Compiled C files (if using C extensions) +*.so + +# Jupyter Notebook checkpoints (if using notebooks) +.ipynb_checkpoints/ + +# Build/Distribution directories +build/ +dist/ +*.egg-info/ + +# Log files +*.log + +# lib, lib64, bin folders (commonly part of venv) +lib/ +lib64/ +bin/ +include/ + -- cgit v1.2.3