Skip to content

Commit

Permalink
Remove lots of boilerplate from the root module.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Jun 18, 2024
1 parent ec177f3 commit 9742b92
Showing 1 changed file with 4 additions and 15 deletions.
19 changes: 4 additions & 15 deletions googlevoice/__init__.py
Original file line number Diff line number Diff line change
@@ -1,25 +1,14 @@
"""
This project aims to bring the power of the Google Voice API to
the Python language in a simple,
easy-to-use manner. Currently it allows you to place calls, send sms,
easy-to-use manner. Currently it allows one to place calls, send sms,
download voicemails/recorded messages, and search the various
folders of your Google Voice Accounts.
You can use the Python API or command line script to schedule
folders of Google Voice Accounts.
Use the Python API or command line script to schedule
calls, check for new received calls/sms,
or even sync your recorded voicemails/calls.
or even sync recorded voicemails/calls.
"""

__author__ = 'Justin Quick and Joe McCall'
__email__ = ('[email protected], [email protected]',)
__copyright__ = 'Copyright 2009, Justin Quick and Joe McCall'
__credits__ = ['Justin Quick', 'Joe McCall', 'Jacob Feisley', 'John Nagle']
__license__ = 'New BSD'

try:
__version__ = __import__('pkg_resources').get_distribution('googlevoice').version
except Exception:
__version__ = 'unknown'

from .voice import Voice
from .util import Phone, Message, Folder

Expand Down

0 comments on commit 9742b92

Please sign in to comment.