diff --git a/MANIFEST.in b/MANIFEST.in index 7fae575..dff66bb 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,6 @@ -include LICENSE README.rst CODE_OF_CONDUCT.md +include LICENSE LICENSE.MIT LICENSE.APACHE2 +include README.rst +include CODE_OF_CONDUCT.md CONTRIBUTING.md include test-requirements.txt .coveragerc +recursive-include docs * +prune docs/build diff --git a/setup.py b/setup.py index 190f27d..8425d38 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ long_description=Path(__file__).with_name("README.rst").read_text('utf-8'), author="Nathaniel J. Smith", author_email="njs@pobox.com", - license="MIT", + license="MIT -or- Apache License 2.0", packages=find_packages(), url="https://github.com/python-trio/async_generator", python_requires=">=3.5",