view lib/mqtt_client/setup.py @ 1458:be5fc8791c4d

dep on influxdb Ignore-this: a89f9f27d849d29e6b11234d6556c0b1 darcs-hash:797ee4baafebe0a5bd13d29d715c5869a091afdb
author drewp <drewp@bigasterisk.com>
date Wed, 25 Sep 2019 17:56:15 -0700
parents 67e8b237d7bf
children
line wrap: on
line source

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