annotate lib/mqtt_client/setup.py @ 605:ad4c4d7c1fb9
reasoning output using treq, and keep writing to PUT calls forever (but not as fast as the reasoning loop runs)
Ignore-this: 1633b16dc315082f759041d42e848ced
author |
drewp@bigasterisk.com |
date |
Tue, 23 Jul 2019 17:30:46 -0700 |
parents |
bac05a73a8ab |
children |
8838f07aea62 |
rev |
line source |
554
|
1 from setuptools import setup
|
|
2
|
|
3 setup(
|
|
4 name='mqtt_client',
|
585
|
5 version='0.7.0',
|
554
|
6 packages=['mqtt_client'],
|
|
7 package_dir={'mqtt_client': ''},
|
|
8 install_requires=['rx', 'twisted-mqtt'],
|
585
|
9 url='https://projects.bigasterisk.com/mqtt-client/mqtt_client-0.7.0.tar.gz',
|
554
|
10 author='Drew Perttula',
|
|
11 author_email='drewp@bigasterisk.com',
|
|
12 )
|