blob: 5b0a7fe8920a4c27dff3d937484dda39b745b905 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--- a/setup.py
+++ b/setup.py
@@ -25,7 +25,7 @@ setup(
author=__author__,
author_email=__contact__,
url=__url__,
- packages=find_packages(where="src"),
+ packages=find_packages(where="src", exclude=["*.test", "*.test.*"]),
package_dir={"": "src"},
package_data=dict(hyperlink=["py.typed", "idna-tables-properties.csv.gz"]),
zip_safe=False,
|