-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (37 loc) · 1.57 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
from setuptools import setup
from codecs import open
from os import path
from cayenne import __version__
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as readme:
long_description = readme.read()
classifiers = ['Development Status :: 5 - Production/Stable',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development',
'Topic :: Communications',
'Topic :: Internet',
'Topic :: Home Automation',
'Topic :: System :: Monitoring']
setup(name = 'cayenne-mqtt',
version = __version__,
author = 'myDevices',
author_email = '[email protected]',
description = 'Cayenne MQTT Python Library',
long_description = long_description,
license = 'MIT',
keywords = 'myDevices Cayenne MQTT',
url = 'https://github.com/myDevicesIoT/Cayenne-MQTT-Python',
classifiers = classifiers,
packages = ['cayenne'],
install_requires = [
'paho-mqtt >= 1.3.0',
],
)