| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- # Python
- __pycache__/
- *.py[cod]
- *$py.class
- # C extensions
- *.so
- # Distribution / packaging
- .Python
- build/
- develop-eggs/
- dist/
- downloads/
- eggs/
- .eggs/
- lib/
- lib64/
- parts/
- sdist/
- var/
- wheels/
- share/python-wheels/
- *.egg-info/
- .installed.cfg
- *.egg
- MANIFEST
- # PyInstaller
- # Usually these files are written by a python script from a template
- # before PyInstaller builds the exe, so as to inject date/other infos into it.
- *.manifest
- # We keep the spec file in version control as it contains custom build config
- # *.spec
- # Installer output (Inno Setup)
- installer_output/
- # Virtual Environments
- venv/
- env/
- ENV/
- env.bak/
- venv.bak/
- # IDE & Editor
- .vscode/
- .idea/
- *.swp
- *.swo
- # OS
- .DS_Store
- Thumbs.db
|