From 6c95bc9884352605e5dd797c045679cf9eea1827 Mon Sep 17 00:00:00 2001 From: zombyacoff Date: Thu, 25 Jul 2024 13:37:39 +0300 Subject: [PATCH] hotfix: add subpackages to build --- setup.py | 2 +- tuparser/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 2bcbe8a..5bb45e9 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ def get_requirements(file_name: str = "requirements.txt") -> list[str]: **Telegraph Universal Parser (tu-parser)** is a flexible module designed for creating custom parsers for the [Telegraph]({tuparser.TELEGRAPH_URL}) website. """), long_description_content_type="text/markdown", - packages=["tuparser"], + packages=["tuparser", "tuparser.exceptions"], install_requires=get_requirements(), python_requires=">=3.12", classifiers=[ diff --git a/tuparser/__init__.py b/tuparser/__init__.py index 51f6bdc..9abc618 100644 --- a/tuparser/__init__.py +++ b/tuparser/__init__.py @@ -5,7 +5,7 @@ __all__ = ["TELEGRAPH_MIRROR_URL", "TELEGRAPH_URL", "TelegraphParser", "YamlOutputFile", "run_parser"] # This information is used in the setup.py file: -__version__ = "0.2.2" +__version__ = "0.2.2.1" __author__ = "zombyacoff" __email__ = "zombyacoff@gmail.com" __git_url__ = "https://github.com/zombyacoff/tu-parser"