Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion messagebird/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from messagebird.verify import Verify

ENDPOINT = 'https://rest.messagebird.com'
CLIENT_VERSION = '1.3.0'
CLIENT_VERSION = '1.3.1'
PYTHON_VERSION = '%d.%d.%d' % (sys.version_info[0], sys.version_info[1], sys.version_info[2])
USER_AGENT = 'MessageBird/ApiClient/%s Python/%s' % (CLIENT_VERSION, PYTHON_VERSION)

Expand Down
35 changes: 23 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,29 @@
from os import path
from setuptools import setup

def get_description():
working_directory = path.abspath(path.dirname(__file__))
readme_path = path.join(working_directory, 'README.md')
with open(readme_path, encoding='utf-8') as f:
return (f.read(), 'text/markdown')

description, description_content_type = get_description()

setup(
name = 'messagebird',
packages = ['messagebird'],
version = '1.3.0',
description = "MessageBird's REST API",
author = 'MessageBird',
author_email = '[email protected]',
url = 'https://github.com/messagebird/python-rest-api',
download_url = 'https://github.com/messagebird/python-rest-api/tarball/1.3.0',
keywords = ['messagebird', 'sms'],
install_requires = ['requests>=2.4.1'],
license = 'BSD-2-Clause',
classifiers = [
name = 'messagebird',
packages = ['messagebird'],
version = '1.3.1',
description = "MessageBird's REST API",
author = 'MessageBird',
author_email = '[email protected]',
long_description = description,
long_description_content_type = description_content_type,
url = 'https://github.com/messagebird/python-rest-api',
download_url = 'https://github.com/messagebird/python-rest-api/tarball/1.3.1',
keywords = ['messagebird', 'sms'],
install_requires = ['requests>=2.4.1'],
license = 'BSD-2-Clause',
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
Expand Down