Skip to content

Commit

Permalink
fix: Update package description and add ChaturbateClient export
Browse files Browse the repository at this point in the history
  • Loading branch information
MountainGod2 committed Nov 2, 2024
1 parent f6f70c5 commit 95d4fcd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/chaturbate_poller/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,17 @@
# Read version from installed package
from importlib.metadata import version

from chaturbate_poller.chaturbate_client import ChaturbateClient

__version__ = version("chaturbate_poller")
__author__ = "MountainGod2"
__author_email__ = "[email protected]"
__maintainer__ = "MountainGod2"
__maintainer_email__ = "[email protected]"
__license__ = "MIT"
__url__ = "https://github.com/MountainGod2/chaturbate_poller"
__description__ = "Poller for the Chaturbate events API."
__description__ = "Python library for interacting with the Chaturbate Events API."


__all__ = [""]
__all__ = ["ChaturbateClient"]
"""List[str]: The package exports."""

0 comments on commit 95d4fcd

Please sign in to comment.