view lib/mqtt_client/setup.py @ 1420:8ffead2295e0

release 0.7.0 Ignore-this: da64b66a5123da5a08b7afa9816221ab darcs-hash:1714de97f2c2f1cdf9f71c689f6acd81fc122371
author drewp <drewp@bigasterisk.com>
date Sun, 04 Aug 2019 12:57:25 -0700
parents 3e9d9cbbb13f
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',
)