Skip to content

Commit f1d27c4

Browse files
committed
Initial setup.py
Add setup.py for setuptools distribution.
1 parent cdaa3b9 commit f1d27c4

File tree

2 files changed

+48
-1
lines changed

2 files changed

+48
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ciscosparkapi
2-
A simple, scalable and lightweight API wrapper for the Cisco Spark services APIs
2+
Simple, lightweight and scalable Python API wrapper for the Cisco Spark APIs
33

44
## Overview
55
A single Pythonic wrapper class representing the Cisco Spark API interfaces and returned JSON objects as method calls that return native Python objects.

ciscosparkapi/setup.py

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
"""A setuptools based setup module."""
2+
3+
from setuptools import setup, find_packages
4+
from codecs import open
5+
from os import path
6+
7+
here = path.abspath(path.dirname(__file__))
8+
9+
# Get the long description from the README file
10+
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
11+
long_description = f.read()
12+
13+
setup(
14+
name='ciscosparkapi',
15+
16+
version='0.1',
17+
18+
description='Simple, lightweight and scalable Python API wrapper for the '
19+
'Cisco Spark APIs',
20+
long_description=long_description,
21+
22+
url='https://github.com/CiscoDevNet/ciscosparkapi',
23+
24+
author='Chris Lunsford',
25+
author_email='[email protected]',
26+
27+
license='MIT',
28+
29+
classifiers=[
30+
'Development Status :: 4 - Beta',
31+
'Intended Audience :: Developers',
32+
'Intended Audience :: System Administrators',
33+
'Intended Audience :: Telecommunications Industry',
34+
'Intended Audience :: Education',
35+
'Natural Language :: English',
36+
'License :: OSI Approved :: MIT License',
37+
'Programming Language :: Python :: 2',
38+
'Programming Language :: Python :: 2.7',
39+
'Topic :: Communications',
40+
'Topic :: Communications :: Chat'
41+
],
42+
43+
keywords='cisco spark api enterprise messaging',
44+
45+
packages='ciscosparkapi',
46+
install_requires=['requests>=2.4.2'],
47+
)

0 commit comments

Comments
 (0)