annotate lib/mqtt_client/setup.py @ 1426:c3c2418d138c

fix pushconfig host lookup Ignore-this: d53a114fdfb3bd3bf355a0c7293a1c7b darcs-hash:6306237a7df35fffb57f27c31a971107608f979e
author drewp <drewp@bigasterisk.com>
date Wed, 07 Aug 2019 21:06:46 -0700
parents 3e9d9cbbb13f
children 8838f07aea62
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1357
f99fe03803d4 mqtt_client into a distributable
drewp <drewp@bigasterisk.com>
parents:
diff changeset
1 from setuptools import setup
f99fe03803d4 mqtt_client into a distributable
drewp <drewp@bigasterisk.com>
parents:
diff changeset
2
f99fe03803d4 mqtt_client into a distributable
drewp <drewp@bigasterisk.com>
parents:
diff changeset
3 setup(
f99fe03803d4 mqtt_client into a distributable
drewp <drewp@bigasterisk.com>
parents:
diff changeset
4 name='mqtt_client',
1388
3e9d9cbbb13f release 0.7.0
drewp <drewp@bigasterisk.com>
parents: 1386
diff changeset
5 version='0.7.0',
1357
f99fe03803d4 mqtt_client into a distributable
drewp <drewp@bigasterisk.com>
parents:
diff changeset
6 packages=['mqtt_client'],
f99fe03803d4 mqtt_client into a distributable
drewp <drewp@bigasterisk.com>
parents:
diff changeset
7 package_dir={'mqtt_client': ''},
f99fe03803d4 mqtt_client into a distributable
drewp <drewp@bigasterisk.com>
parents:
diff changeset
8 install_requires=['rx', 'twisted-mqtt'],
1388
3e9d9cbbb13f release 0.7.0
drewp <drewp@bigasterisk.com>
parents: 1386
diff changeset
9 url='https://projects.bigasterisk.com/mqtt-client/mqtt_client-0.7.0.tar.gz',
1357
f99fe03803d4 mqtt_client into a distributable
drewp <drewp@bigasterisk.com>
parents:
diff changeset
10 author='Drew Perttula',
f99fe03803d4 mqtt_client into a distributable
drewp <drewp@bigasterisk.com>
parents:
diff changeset
11 author_email='drewp@bigasterisk.com',
f99fe03803d4 mqtt_client into a distributable
drewp <drewp@bigasterisk.com>
parents:
diff changeset
12 )