-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 796 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 796 Bytes
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
from distutils.core import setup
import sys
setup(
name='callr',
version='2.1.0',
author='Michael Jacquin, Dion MITCHELL',
author_email='michael.jacquin@callr.com, dion.mitchell@callr.com',
packages=['callr'],
scripts=[],
url='https://github.com/THECALLR/sdk-python',
license='MIT',
install_requires=[
'future>=0.15.2'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
description='Python 2.7, 3.3+ SDK for CALLR API'
)