Remove zip_safe from install.rst documentation

`zip_safe` is obsolete per:
https://setuptools.pypa.io/en/latest/deprecated/zip_safe.html

In summary:
> It is very unlikely that the values of zip_safe will affect modern deployments that use pip for installing packages. Moreover, new users of setuptools should not attempt to create egg files using the deprecated build_egg command. Therefore, this flag is considered obsolete.
This commit is contained in:
Kevin Kirsche 2022-08-22 09:52:21 -04:00 committed by GitHub
parent 36af821edf
commit 72a16f772d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -41,7 +41,6 @@ to it.
version='1.0.0',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'flask',
],