Skip to content

Commit

Permalink
Initial setup.py
Browse files Browse the repository at this point in the history
Add setup.py for setuptools distribution.
  • Loading branch information
cmlccie committed Sep 12, 2016
1 parent cdaa3b9 commit f1d27c4
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ciscosparkapi
A simple, scalable and lightweight API wrapper for the Cisco Spark services APIs
Simple, lightweight and scalable Python API wrapper for the Cisco Spark APIs

## Overview
A single Pythonic wrapper class representing the Cisco Spark API interfaces and returned JSON objects as method calls that return native Python objects.
Expand Down
47 changes: 47 additions & 0 deletions ciscosparkapi/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
"""A setuptools based setup module."""

from setuptools import setup, find_packages
from codecs import open
from os import path

here = path.abspath(path.dirname(__file__))

# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(
name='ciscosparkapi',

version='0.1',

description='Simple, lightweight and scalable Python API wrapper for the '
'Cisco Spark APIs',
long_description=long_description,

url='https://github.com/CiscoDevNet/ciscosparkapi',

author='Chris Lunsford',
author_email='[email protected]',

license='MIT',

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',
'Topic :: Communications',
'Topic :: Communications :: Chat'
],

keywords='cisco spark api enterprise messaging',

packages='ciscosparkapi',
install_requires=['requests>=2.4.2'],
)

0 comments on commit f1d27c4

Please sign in to comment.