|
| 1 | +{ |
| 2 | + "__meta__": { |
| 3 | + "title": "PyInstaller auto-mapping", |
| 4 | + "version": "1.0.0", |
| 5 | + "description": "Auto args for PyInstaller based on detected packages." |
| 6 | + }, |
| 7 | + "__aliases__": { |
| 8 | + "import_to_package": { |
| 9 | + "cv2": "opencv-python", |
| 10 | + "pil": "Pillow", |
| 11 | + "sklearn": "scikit-learn", |
| 12 | + "skimage": "scikit-image", |
| 13 | + "yaml": "PyYAML", |
| 14 | + "bs4": "beautifulsoup4" |
| 15 | + }, |
| 16 | + "package_to_import_name": { |
| 17 | + "opencv-python": "cv2", |
| 18 | + "Pillow": "PIL", |
| 19 | + "scikit-learn": "sklearn", |
| 20 | + "scikit-image": "skimage", |
| 21 | + "PyYAML": "yaml", |
| 22 | + "beautifulsoup4": "bs4" |
| 23 | + } |
| 24 | + }, |
| 25 | + "numpy": { |
| 26 | + "pyinstaller": ["--collect-all", "{import_name}"] |
| 27 | + }, |
| 28 | + "matplotlib": { |
| 29 | + "pyinstaller": ["--collect-all", "{import_name}"] |
| 30 | + }, |
| 31 | + "Pillow": { |
| 32 | + "pyinstaller": ["--collect-all", "{import_name}"] |
| 33 | + }, |
| 34 | + "opencv-python": { |
| 35 | + "pyinstaller": ["--collect-all", "{import_name}"] |
| 36 | + }, |
| 37 | + "pandas": { |
| 38 | + "pyinstaller": ["--collect-all", "{import_name}"] |
| 39 | + }, |
| 40 | + "scipy": { |
| 41 | + "pyinstaller": ["--collect-all", "{import_name}"] |
| 42 | + }, |
| 43 | + "scikit-learn": { |
| 44 | + "pyinstaller": ["--collect-all", "{import_name}"] |
| 45 | + }, |
| 46 | + "scikit-image": { |
| 47 | + "pyinstaller": ["--collect-all", "{import_name}"] |
| 48 | + }, |
| 49 | + "lxml": { |
| 50 | + "pyinstaller": ["--collect-all", "{import_name}"] |
| 51 | + }, |
| 52 | + "PyYAML": { |
| 53 | + "pyinstaller": ["--hidden-import", "{import_name}"] |
| 54 | + }, |
| 55 | + "PySide6": { |
| 56 | + "pyinstaller": ["--collect-all", "{import_name}"] |
| 57 | + }, |
| 58 | + "PySide2": { |
| 59 | + "pyinstaller": ["--collect-all", "{import_name}"] |
| 60 | + }, |
| 61 | + "PyQt5": { |
| 62 | + "pyinstaller": ["--collect-all", "{import_name}"] |
| 63 | + }, |
| 64 | + "PyQt6": { |
| 65 | + "pyinstaller": ["--collect-all", "{import_name}"] |
| 66 | + } |
| 67 | +} |
0 commit comments