|
1 | 1 | { |
| 2 | + "__aliases__": { |
| 3 | + "package_to_import_name": { |
| 4 | + "Pillow": "PIL", |
| 5 | + "opencv-python": "cv2", |
| 6 | + "opencv-contrib-python": "cv2", |
| 7 | + "scikit-learn": "sklearn", |
| 8 | + "Jinja2": "jinja2", |
| 9 | + "wxPython": "wx" |
| 10 | + }, |
| 11 | + "import_to_package": { |
| 12 | + "cv2": "opencv-python", |
| 13 | + "PIL": "Pillow", |
| 14 | + "sklearn": "scikit-learn", |
| 15 | + "wx": "wxPython" |
| 16 | + } |
| 17 | + }, |
| 18 | + |
| 19 | + "numpy": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 20 | + "scipy": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 21 | + "pandas": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 22 | + "matplotlib": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 23 | + "scikit-learn": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 24 | + "scikit-image": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 25 | + "Pillow": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 26 | + "imageio": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 27 | + "opencv-python": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 28 | + "opencv-contrib-python": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 29 | + "lxml": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 30 | + |
| 31 | + "PySide6": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 32 | + "PySide2": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 33 | + "PyQt6": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 34 | + "PyQt5": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 35 | + "tkinter": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 36 | + "Kivy": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 37 | + "wxPython": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 38 | + |
| 39 | + "torch": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 40 | + "torchvision": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 41 | + "torchaudio": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 42 | + "tensorflow": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 43 | + "onnxruntime": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 44 | + "xgboost": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 45 | + "lightgbm": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 46 | + |
| 47 | + "statsmodels": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 48 | + "Jinja2": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 49 | + "cryptography": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 50 | + "PyOpenSSL": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 51 | + "pyzmq": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 52 | + "pyaudio": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 53 | + "h5py": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 54 | + "pyserial": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 55 | + "pygame": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 56 | + "spacy": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 57 | + "transformers": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 58 | + "sentencepiece": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 59 | + |
| 60 | + "shapely": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 61 | + "geopandas": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 62 | + "fiona": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 63 | + "rasterio": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 64 | + "librosa": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 65 | + "sounddevice": {"pyinstaller": ["--collect-all", "{import_name}"]}, |
| 66 | + |
| 67 | + "ctypes": {"pyinstaller": ["--hidden-import", "ctypes"]}, |
| 68 | + "sqlite3": {"pyinstaller": ["--hidden-import", "sqlite3"]}, |
| 69 | + "pkg_resources": {"pyinstaller": ["--hidden-import", "pkg_resources"]}, |
| 70 | + "setuptools": {"pyinstaller": ["--hidden-import", "pkg_resources"]}, |
| 71 | + |
2 | 72 | "engine": "pyinstaller", |
3 | 73 | "binary": "pyinstaller", |
4 | 74 | "module": "PyInstaller", |
|
0 commit comments