|
| 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 | + |
| 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