From 2523069ce994b9885ac2882da803f6c25cb58202 Mon Sep 17 00:00:00 2001 From: Andre Basche Date: Sun, 23 Jul 2023 23:13:58 +0200 Subject: [PATCH] Fix false name caused by chatgpt's wrong advice --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 4e1d690..a17bc25 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ with open("README.md", "r", encoding="utf-8") as f: setup( name="pyhOn", - version="0.15.2", + version="0.15.3", author="Andre Basche", description="Control hOn devices with python", long_description=long_description, @@ -20,7 +20,7 @@ setup( platforms="any", packages=find_packages(), include_package_data=True, - package_data={"pyhOn": ["py.typed"]}, + package_data={"pyhon": ["py.typed"]}, python_requires=">=3.10", install_requires=["aiohttp==3.8.5", "typing-extensions==4.7.1"], classifiers=[