Mercurial > code > home > repos > mqtt_client
annotate setup.py @ 0:834594523aa4
move from homeauto repo
author | drewp@bigasterisk.com |
---|---|
date | Wed, 24 Nov 2021 10:06:04 -0800 |
parents | |
children | 858118795bb8 |
rev | line source |
---|---|
0 | 1 from setuptools import setup |
2 | |
3 setup( | |
4 name='mqtt_client', | |
5 version='0.9.0', | |
6 packages=['mqtt_client'], | |
7 package_dir={'mqtt_client': ''}, | |
8 install_requires=['rx>=3.0.0', 'twisted-mqtt'], | |
9 url='https://projects.bigasterisk.com/mqtt-client/mqtt_client-0.9.0.tar.gz', | |
10 author='Drew Perttula', | |
11 author_email='drewp@bigasterisk.com', | |
12 ) |