]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Add zip_safe=False to setup() (#361)
authorFlorimond Manca <florimond.manca@gmail.com>
Thu, 19 Sep 2019 16:13:20 +0000 (18:13 +0200)
committerSeth Michael Larson <sethmichaellarson@gmail.com>
Thu, 19 Sep 2019 16:13:20 +0000 (11:13 -0500)
This fixes `py.typed` not being included in the built package

setup.py

index ad27702bb2b628468f0951f16b1bb53719c8e7fc..8bd9d605f8571cd8c0d57e82566733a631e3ce1b 100644 (file)
--- 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.*",