Imported Upstream version 0.9.2
[platform/upstream/iotivity.git] / service / protocol-plugin / plugins / mqtt-fan / lib / python / setup.py
1 from sys import version
2
3 from distutils.core import setup
4 setup(name='mosquitto',
5         version='1.3.1',
6         description='MQTT version 3.1 client class',
7         author='Roger Light',
8         author_email='roger@atchoo.org',
9         url='http://mosquitto.org/',
10         download_url='http://mosquitto.org/files/',
11         license='BSD License',
12         py_modules=['mosquitto'],
13
14     classifiers=[
15         'Development Status :: 4 - Beta',
16         'Intended Audience :: Developers',
17         'License :: OSI Approved :: BSD License',
18         'Operating System :: MacOS :: MacOS X',
19         'Operating System :: Microsoft :: Windows',
20         'Operating System :: POSIX',
21         'Programming Language :: Python',
22         'Programming Language :: Python :: 2.6',
23         'Programming Language :: Python :: 2.7',
24         'Programming Language :: Python :: 3',
25         'Topic :: Communications',
26         'Topic :: Internet',
27         ]
28         )