├── .gitattributes ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── qt_multiprocessing ├── __init__.py ├── application.py ├── close_app_helper.py ├── qt_mp_event_loop.py └── qt_proxy.py ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── run_close.py ├── run_dynamic_creation.py ├── run_manager.py ├── run_proxy.py ├── run_qt_mp.py └── run_readme_test.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justengel/qt_multiprocessing/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justengel/qt_multiprocessing/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justengel/qt_multiprocessing/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justengel/qt_multiprocessing/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justengel/qt_multiprocessing/HEAD/README.md -------------------------------------------------------------------------------- /qt_multiprocessing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justengel/qt_multiprocessing/HEAD/qt_multiprocessing/__init__.py -------------------------------------------------------------------------------- /qt_multiprocessing/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justengel/qt_multiprocessing/HEAD/qt_multiprocessing/application.py -------------------------------------------------------------------------------- /qt_multiprocessing/close_app_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justengel/qt_multiprocessing/HEAD/qt_multiprocessing/close_app_helper.py -------------------------------------------------------------------------------- /qt_multiprocessing/qt_mp_event_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justengel/qt_multiprocessing/HEAD/qt_multiprocessing/qt_mp_event_loop.py -------------------------------------------------------------------------------- /qt_multiprocessing/qt_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justengel/qt_multiprocessing/HEAD/qt_multiprocessing/qt_proxy.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | mp_event_loop>=1.4.5 2 | 3 | qtpy 4 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justengel/qt_multiprocessing/HEAD/setup.py -------------------------------------------------------------------------------- /tests/run_close.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justengel/qt_multiprocessing/HEAD/tests/run_close.py -------------------------------------------------------------------------------- /tests/run_dynamic_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justengel/qt_multiprocessing/HEAD/tests/run_dynamic_creation.py -------------------------------------------------------------------------------- /tests/run_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justengel/qt_multiprocessing/HEAD/tests/run_manager.py -------------------------------------------------------------------------------- /tests/run_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justengel/qt_multiprocessing/HEAD/tests/run_proxy.py -------------------------------------------------------------------------------- /tests/run_qt_mp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justengel/qt_multiprocessing/HEAD/tests/run_qt_mp.py -------------------------------------------------------------------------------- /tests/run_readme_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justengel/qt_multiprocessing/HEAD/tests/run_readme_test.py --------------------------------------------------------------------------------