forked from WebexCommunity/WebexPythonSDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
71 lines (53 loc) · 1.89 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# -*- coding: utf-8 -*-
"""A setuptools based setup module."""
from codecs import open
from os import path
from setuptools import setup
import versioneer
__author__ = "Chris Lunsford"
__author_email__ = "[email protected]"
__copyright__ = "Copyright (c) 2016 Cisco Systems, Inc."
__license__ = "MIT"
# Get the long description from the README file
current_path = path.abspath(path.dirname(__file__))
with open(path.join(current_path, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='ciscosparkapi',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Simple, lightweight, scalable Python API wrapper for the '
'Cisco Spark APIs',
long_description=long_description,
url='https://github.com/CiscoDevNet/ciscosparkapi',
download_url="https://pypi.python.org/pypi/ciscosparkapi",
author=__author__,
author_email=__author_email__,
license=__license__+"; "+__copyright__,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: Education',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Communications',
'Topic :: Communications :: Chat'
],
keywords='cisco spark api enterprise messaging',
packages=[
'ciscosparkapi',
'ciscosparkapi.api',
],
install_requires=[
'future',
'requests>=2.4.2',
'requests_toolbelt',
],
)