-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
29 lines (28 loc) · 972 Bytes
/
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
import sys
sys.path.insert(0, 'src')
from paho.mqtt import __version__
from distutils.core import setup
setup(name='paho-mqtt',
version=__version__,
description='MQTT version 3.1/3.1.1 client class',
author='Roger Light',
author_email='[email protected]',
url='http://eclipse.org/paho',
license='Eclipse Public License v1.0 / Eclipse Distribution License v1.0',
package_dir={'': 'src'},
packages=['paho', 'paho.mqtt'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Communications',
'Topic :: Internet',
]
)