Skip to content

Commit 76b8aac

Browse files
Eeshan Gargtimabbott
authored andcommitted
zulip_bots: Remove include_package_data=True argument from setup().
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()`. Thus, the `py.typed` file was not included in our latest PyPI release 0.8.1. A quick way to fix this is to remove the `include_package_data=True` argument and to let our explicit `package_data` argument values govern what data is included in the release. See pypa/setuptools#1461 for background.
1 parent bdc4901 commit 76b8aac

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

zulip_bots/setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@
5555
"zulip-terminal=zulip_bots.terminal:main",
5656
],
5757
},
58-
include_package_data=True,
5958
) # type: Dict[str, Any]
6059

6160
setuptools_info = dict(

0 commit comments

Comments
 (0)