forked from messagebird/python-rest-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (36 loc) · 1.39 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
33
34
35
36
37
38
from os import path
from setuptools import setup
from io import open
with open('README.md', encoding='utf-8') as f:
description = f.read()
setup(
name = 'gearplug-messagebird',
packages = ['messagebird'],
version = '2.1.0',
description = "MessageBird's REST API",
author = 'MessageBird',
author_email = 'support@messagebird.com',
long_description = description,
long_description_content_type = 'text/markdown',
url = 'https://github.com/GearPlug/messagebird-python',
keywords = ['messagebird', 'sms'],
install_requires = ['requests>=2.4.1', 'python-dateutil>=2.6.0', 'pyjwt>=2.1.0'],
extras_require = {
'dev': [
'pytest',
'pytest-cov',
'mock>=2.0',
'codecov',
'pycodestyle',
]
},
license = 'BSD-2-Clause',
classifiers = [
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Operating System :: OS Independent',
],
)