forked from messagebird/python-rest-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 1.32 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from os import path
from setuptools import setup
from io import open
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.4.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.4.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',
],
)