From: Florimond Manca Date: Thu, 19 Sep 2019 16:13:20 +0000 (+0200) Subject: Add zip_safe=False to setup() (#361) X-Git-Tag: 0.7.3~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=061d943b78e76a410124f01e5bbf487376d986eb;p=thirdparty%2Fhttpx.git Add zip_safe=False to setup() (#361) This fixes `py.typed` not being included in the built package --- diff --git a/setup.py b/setup.py index ad27702b..8bd9d605 100644 --- a/setup.py +++ b/setup.py @@ -49,6 +49,7 @@ setup( package_data={"httpx": ["py.typed"]}, packages=get_packages("httpx"), include_package_data=True, + zip_safe=False, install_requires=[ "certifi", "chardet==3.*",