We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
tests
1 parent 0c08b7c commit cc87dfcCopy full SHA for cc87dfc
newsfragments/158.misc.rst
@@ -0,0 +1 @@
1
+Remove the `tests` folder from wheel files. This reduces the zipped file size by 20KB (about 30%).
setup.py
@@ -12,12 +12,9 @@
12
author="Nathaniel J. Smith",
13
author_email="njs@pobox.com",
14
license="MIT",
15
- packages=find_packages(),
+ packages=find_packages(exclude=["h11.tests"]),
16
package_data={'h11': ['py.typed']},
17
url="https://github.com/python-hyper/h11",
18
- # This means, just install *everything* you see under h11/, even if it
19
- # doesn't look like a source file, so long as it appears in MANIFEST.in:
20
- include_package_data=True,
21
python_requires=">=3.8",
22
classifiers=[
23
"Development Status :: 3 - Alpha",
0 commit comments