view lib/mqtt_client/setup.py @ 697:3f33787bfcb8

mqtt->rdf is now over in rdf_from_mqtt service Ignore-this: a0673d8868f29fae87b4af432cfd686f
author drewp@bigasterisk.com
date Fri, 31 Jan 2020 23:56:42 -0800
parents d1d62618138d
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',
)