Skip to content

Commit

Permalink
Fix missing type info in dists
Browse files Browse the repository at this point in the history
The typing flag file wasn't being included in
the redistributables, since we need to tell setuptools
to include the file, as well as some other things.
  • Loading branch information
mrodden committed Sep 9, 2021
1 parent a84d886 commit fc590fe
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,17 @@

setup(
name="ibmcloud-iam",
version="0.1.3",
version="0.1.4",
author="Mathew Odden",
author_email="mrodden@us.ibm.com",
url="https://github.com/mrodden/ibmcloud-iam-python-client",
description="A collection of Python modules used for interacting with IBMCloud IAM API services",
long_description=long_desc,
long_description_content_type="text/markdown",
packages=find_packages(),
package_data={"ibmcloud_iam": ["py.typed", "*.pyi"]},
include_package_data=True,
zip_safe=False,
install_requires=["requests[security]", "pyjwt", "redstone"],
extras_require={
"docs": ["sphinx>=3.1", "sphinx_rtd_theme"],
Expand Down

0 comments on commit fc590fe

Please sign in to comment.