Skip to content

Commit f69a685

Browse files
committed
include_package_data only works when you have a VCS checkout, and not from an sdist
1 parent 983b316 commit f69a685

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@
2626
url=__url__,
2727
packages=find_packages(where="src"),
2828
package_dir={"": "src"},
29-
include_package_data=True,
29+
package_data=dict(
30+
hyperlink=[
31+
"py.typed",
32+
],
33+
),
3034
zip_safe=False,
3135
license=__license__,
3236
platforms='any',

0 commit comments

Comments
 (0)