├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── MANIFEST.in ├── README.md ├── multiprocessing_logging.py ├── pyproject.toml ├── setup.cfg ├── setup.py └── tests ├── __init__.py └── test_multiprocessing_logging.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruere/multiprocessing-logging/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruere/multiprocessing-logging/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruere/multiprocessing-logging/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE README.md pyproject.toml 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruere/multiprocessing-logging/HEAD/README.md -------------------------------------------------------------------------------- /multiprocessing_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruere/multiprocessing-logging/HEAD/multiprocessing_logging.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruere/multiprocessing-logging/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruere/multiprocessing-logging/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_multiprocessing_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruere/multiprocessing-logging/HEAD/tests/test_multiprocessing_logging.py --------------------------------------------------------------------------------