Skip to content

Commit

Permalink
Merge pull request #352 from nickgaya/py-typed
Browse files Browse the repository at this point in the history
Fix package_data and add zip_safe=False in setup.py
  • Loading branch information
sjaensch authored Oct 21, 2019
2 parents 16e7529 + 1f088e2 commit 81d9dca
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,10 @@
"msgpack-python>=0.5.2",
],
package_data={
'bravado-core': ['py.typed'],
'bravado_core': ['py.typed'],
},
# https://mypy.readthedocs.io/en/latest/installed_packages.html
zip_safe=False,
extras_require={
':python_version<"3.5"': ['typing'],
':python_version<"3.4"': ['enum34'],
Expand Down

0 comments on commit 81d9dca

Please sign in to comment.