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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
554
2c4e8ef57f08 mqtt_client into a distributable
drewp@bigasterisk.com
parents:
diff changeset
1 from setuptools import setup
2c4e8ef57f08 mqtt_client into a distributable
drewp@bigasterisk.com
parents:
diff changeset
2
2c4e8ef57f08 mqtt_client into a distributable
drewp@bigasterisk.com
parents:
diff changeset
3 setup(
2c4e8ef57f08 mqtt_client into a distributable
drewp@bigasterisk.com
parents:
diff changeset
4 name='mqtt_client',
585
bac05a73a8ab release 0.7.0
drewp@bigasterisk.com
parents: 583
diff changeset
5 version='0.7.0',
554
2c4e8ef57f08 mqtt_client into a distributable
drewp@bigasterisk.com
parents:
diff changeset
6 packages=['mqtt_client'],
2c4e8ef57f08 mqtt_client into a distributable
drewp@bigasterisk.com
parents:
diff changeset
7 package_dir={'mqtt_client': ''},
2c4e8ef57f08 mqtt_client into a distributable
drewp@bigasterisk.com
parents:
diff changeset
8 install_requires=['rx', 'twisted-mqtt'],
585
bac05a73a8ab release 0.7.0
drewp@bigasterisk.com
parents: 583
diff changeset
9 url='https://projects.bigasterisk.com/mqtt-client/mqtt_client-0.7.0.tar.gz',
554
2c4e8ef57f08 mqtt_client into a distributable
drewp@bigasterisk.com
parents:
diff changeset
10 author='Drew Perttula',
2c4e8ef57f08 mqtt_client into a distributable
drewp@bigasterisk.com
parents:
diff changeset
11 author_email='drewp@bigasterisk.com',
2c4e8ef57f08 mqtt_client into a distributable
drewp@bigasterisk.com
parents:
diff changeset
12 )