diff --git a/MANIFEST.in b/MANIFEST.in index 437f441a..afe20e33 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -9,7 +9,9 @@ include pytest.ini include tox.ini include requirements.txt include jedi/parser/python/grammar*.txt -recursive-include jedi/third_party * +recursive-include jedi/third_party *.pyi +recursive-include jedi/third_party/typeshed/LICENSE +recursive-include jedi/third_party/typeshed/README recursive-include test * recursive-include docs * recursive-exclude * *.pyc diff --git a/setup.py b/setup.py index bacd3a6e..9ab90346 100755 --- a/setup.py +++ b/setup.py @@ -44,7 +44,8 @@ setup(name='jedi', 'colorama', ], }, - package_data={'jedi': ['*.pyi']}, + package_data={'jedi': ['*.pyi', 'third_party/typeshed/LICENSE', + 'third_party/typeshed/README']}, platforms=['any'], classifiers=[ 'Development Status :: 4 - Beta',