view lib/mqtt_client/setup.py @ 1433:be9b456717bd

round numbers. py3 updates. ws Ignore-this: d1191987ce8070c9700a26b89436478a darcs-hash:284883b8403f0563572a154cca19d5e96a5e5654
author drewp <drewp@bigasterisk.com>
date Sun, 11 Aug 2019 03:25:20 -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',
)