From b2d7e675d17abed25a947f0477bb2429d61daefb Mon Sep 17 00:00:00 2001 From: David Lev Date: Mon, 2 Oct 2023 16:59:45 +0300 Subject: [PATCH] [version 1.5.1] fix package imports --- pyproject.toml | 2 +- pywa/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b0d5b99..47dd57b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ readme = {file = "README.rst", content-type = "text/x-rst"} dependencies = {file = "requirements.txt"} [tool.setuptools.packages.find] -include = ["pywa"] +include = ["pywa*"] exclude = ["tests"] [project] diff --git a/pywa/__init__.py b/pywa/__init__.py index 073a0c8..a815ce4 100644 --- a/pywa/__init__.py +++ b/pywa/__init__.py @@ -7,6 +7,6 @@ from pywa.client import WhatsApp -__version__ = "1.5.0" +__version__ = "1.5.1" __author__ = "David Lev" __license__ = "MIT"