view lib/mqtt_client/setup.py @ 579:603272ee3000

big rewrite. now probably works for multiple subscriptions and over reconnects Ignore-this: 301b82746e517d2a6ff212677f23ca8e
author drewp@bigasterisk.com
date Wed, 08 May 2019 00:55:58 -0700
parents eca250fd66c7
children 9d60d3f34ddc
line wrap: on
line source

from setuptools import setup
 
setup(
    name='mqtt_client',
    version='0.4.0',
    packages=['mqtt_client'],
    package_dir={'mqtt_client': ''},
    install_requires=['rx', 'twisted-mqtt'],
    url='https://projects.bigasterisk.com/mqtt-client/mqtt_client-0.4.0.tar.gz',
    author='Drew Perttula',
    author_email='drewp@bigasterisk.com',
)