annotate lib/mqtt_client/setup.py @ 696:c52b172c0824
add publish to ON/OFF messages. split up the main statement handler
Ignore-this: b1ec515e6873a6841b1c31c3fb7a2a36
author |
drewp@bigasterisk.com |
date |
Fri, 31 Jan 2020 23:55:27 -0800 |
parents |
d1d62618138d |
children |
|
rev |
line source |
554
|
1 from setuptools import setup
|
|
2
|
|
3 setup(
|
|
4 name='mqtt_client',
|
646
|
5 version='0.9.0',
|
554
|
6 packages=['mqtt_client'],
|
|
7 package_dir={'mqtt_client': ''},
|
643
|
8 install_requires=['rx>=3.0.0', 'twisted-mqtt'],
|
646
|
9 url='https://projects.bigasterisk.com/mqtt-client/mqtt_client-0.9.0.tar.gz',
|
554
|
10 author='Drew Perttula',
|
|
11 author_email='drewp@bigasterisk.com',
|
|
12 )
|