annotate lib/mqtt_client/setup.py @ 1357:f99fe03803d4

mqtt_client into a distributable Ignore-this: 8c99f2f6220b55e32df3349d02f725c7 darcs-hash:52741036605ef03b0452f03c0151bd1bbed07fdc
author drewp <drewp@bigasterisk.com>
date Tue, 30 Apr 2019 23:37:25 -0700
parents
children 915e105cfec2
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',
f99fe03803d4 mqtt_client into a distributable
drewp <drewp@bigasterisk.com>
parents:
diff changeset
5 version='0.0.0',
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'],
f99fe03803d4 mqtt_client into a distributable
drewp <drewp@bigasterisk.com>
parents:
diff changeset
9 url='https://projects.bigasterisk.com/mqtt-client/mqtt_client-0.0.0.tar.gz',
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 )