Add zip_safe=False to setup() (#361)

This fixes `py.typed` not being included in the built package
This commit is contained in:
Florimond Manca 2019-09-19 18:13:20 +02:00 committed by Seth Michael Larson
parent 338a360785
commit 061d943b78

View File

@ -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.*",