diff --git a/setup.py b/setup.py index 479d65d0..3cb96446 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from pathlib import Path -from setuptools import find_packages, setup +from setuptools import setup PROJECT_DIR = Path(__file__).parent.resolve() README_FILE = PROJECT_DIR / "README.md" @@ -21,7 +21,7 @@ description="Asynchronous library to control Shelly devices.", long_description=README_FILE.read_text(encoding="utf-8"), long_description_content_type="text/markdown", - packages=find_packages(), + packages=["aioshelly"], python_requires=">=3.11", package_data={"aioshelly": ["py.typed"]}, zip_safe=True,