-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 loc) · 1.52 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
import setuptools
import logging
log = logging.getLogger(__name__)
long_description = open('README.md').read().strip()
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError) as err:
log.error('cannot convert README.md', err)
setuptools.setup(name='callfire-api-client-python',
version='0.0.9',
description='CallFire API v2 Python client. Connect voice and text services to your application.',
long_description=long_description,
author='Vladimir Mikhailov',
author_email='[email protected]',
url='https://github.com/CallFire/callfire-api-client-python',
packages=['callfire'],
install_requires=[
"bravado"
],
package_data={
'readme': ['README.md']
},
license='MIT License',
zip_safe=False,
keywords='CallFire API v2 Python SDK messaging sms mms dialing calls texts',
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6'
])