44 lines
630 B
Plaintext
44 lines
630 B
Plaintext
# .gitignore
|
|
|
|
# Ignore the virtual environment directory
|
|
myenv/
|
|
|
|
# Byte-compiled / optimized files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Ignore all .pyc files in any directory
|
|
**/*.pyc
|
|
|
|
# Ignore pip wheel metadata
|
|
pip-wheel-metadata/
|
|
|
|
# Ignore the `dist/` directory used for package distributions
|
|
dist/
|
|
|
|
# Ignore Python egg metadata, regenerated from source files by setuptools
|
|
*.egg-info/
|
|
*.egg-info/*
|
|
*.egg/
|
|
|
|
# Ignore Jupyter Notebook
|
|
.ipynb_checkpoints
|
|
|
|
# Ignore VSCode directory
|
|
.vscode/
|
|
|
|
# Ignore JetBrains IDEs directory
|
|
.idea/
|
|
|
|
# Ignore MacOS directory
|
|
.DS_Store
|
|
|
|
# Ignore other unwanted file
|
|
*.log
|
|
*.bak
|
|
*.swp
|
|
*.swo
|
|
*.swp
|
|
|