Skip to content

Commit

Permalink
Fix mypy by adding py.typed to the package build (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
check69 committed May 16, 2022
1 parent c3fae41 commit 0679497
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@

setuptools.setup(
name="rusty-results",
version="1.1.0",
version="1.1.1",
author="Daniel Sanchez Quiros, Antonio Jose Checa Bustos",
author_email="[email protected], [email protected]",
description="Rust inspired Result and Option types",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/danielSanchezQ/rusty_results",
package_data={".": ["py.typed"]},
package_data={"rusty_results": ["py.typed"]},
packages=setuptools.find_packages(exclude=("*tests*",)),
classifiers=[
"Programming Language :: Python :: 3",
Expand Down

0 comments on commit 0679497

Please sign in to comment.