Skip to content

Commit

Permalink
hotfix: add subpackages to build
Browse files Browse the repository at this point in the history
  • Loading branch information
zombyacoff committed Jul 25, 2024
1 parent 9acc7f8 commit 6c95bc9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=[
Expand Down
2 changes: 1 addition & 1 deletion tuparser/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 6c95bc9

Please sign in to comment.