view lib/mqtt_client/setup.py @ 628:accbbd521ecd

wip for pytype support and separate device run loops on piNode Ignore-this: 9aa9a3a7e715afefbc858050e02c4c62
author drewp@bigasterisk.com
date Sat, 10 Aug 2019 23:33:50 -0700
parents bac05a73a8ab
children 8838f07aea62
line wrap: on
line source

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