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