Mercurial > libervia-pubsub
changeset 477:9125a6e440c0
install (setup): installation is actually not zip safe:
`zip_safe` cause trouble when set and the package is zipped:
- Twisted doesn't seem to handle correctly the plugin
- `VERSION` can't be loaded
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 03 Jan 2022 16:48:22 +0100 |
parents | 1092bab8b3f3 |
children | b544109ab4c4 |
files | setup.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/setup.py Mon Jan 03 16:45:55 2022 +0100 +++ b/setup.py Mon Jan 03 16:48:22 2022 +0100 @@ -74,7 +74,7 @@ data_files=[(os.path.join("share/doc", NAME), ["CHANGELOG", "COPYING", "README"]), ], - zip_safe=True, + zip_safe=False, setup_requires=["setuptools_scm"] if is_dev_version else [], use_scm_version=sat_dev_version if is_dev_version else False, install_requires=install_requires,