Mercurial > libervia-pubsub
diff setup.py @ 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 | 36c9fb677f1d |
children | fa0d2a4783fa |
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,