Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pypi: Include py.typed in MANIFEST.in.
According to the `setuptools` docs, once `include_package_data=True` is passed to `setup()`, it will only include package data specified in `MANIFEST.in`, and will ignore the `package_data` argument passed to `setup()`. Therefore, `py.typed` was not included in our latest PyPI release 0.8.1. Since we specify all of our package data in the `MANIFEST.in` file already, it makes more sense to include mention `py.typed` there so that it is included in the expected fashion. See pypa/setuptools#1461 for background. Fixes #732.
- Loading branch information