Skip to content

Commit

Permalink
[package] actually install py.typed
Browse files Browse the repository at this point in the history
  • Loading branch information
jlaine committed Nov 2, 2019
1 parent 2d56d3b commit 9b08cc7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis/script
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if [ "$BUILD" = "lint" ]; then
elif [ "$BUILD" = "sdist" ]; then
python3 setup.py sdist
if [ -n "$TRAVIS_TAG" ]; then
python3 -m twine upload --skip-existing dist/*
twine upload --skip-existing dist/*
fi
else
coverage run setup.py test
Expand Down
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
include LICENSE
include aioquic/py.typed
recursive-include docs *.py *.rst Makefile
recursive-include examples *.html *.py
recursive-include tests *.bin *.pem *.py
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"aioquic._crypto", libraries=["crypto"], sources=["src/_crypto.c"]
),
],
package_data={"aioquic": ["py.typed"]},
packages=["aioquic", "aioquic.asyncio", "aioquic.h0", "aioquic.h3", "aioquic.quic"],
install_requires=[
"cryptography >= 2.5",
Expand Down

0 comments on commit 9b08cc7

Please sign in to comment.