annotate lib/mqtt_client/setup.py @ 1433:be9b456717bd
round numbers. py3 updates. ws
Ignore-this: d1191987ce8070c9700a26b89436478a
darcs-hash:284883b8403f0563572a154cca19d5e96a5e5654
author |
drewp <drewp@bigasterisk.com> |
date |
Sun, 11 Aug 2019 03:25:20 -0700 |
parents |
3e9d9cbbb13f |
children |
8838f07aea62 |
rev |
line source |
1357
|
1 from setuptools import setup
|
|
2
|
|
3 setup(
|
|
4 name='mqtt_client',
|
1388
|
5 version='0.7.0',
|
1357
|
6 packages=['mqtt_client'],
|
|
7 package_dir={'mqtt_client': ''},
|
|
8 install_requires=['rx', 'twisted-mqtt'],
|
1388
|
9 url='https://projects.bigasterisk.com/mqtt-client/mqtt_client-0.7.0.tar.gz',
|
1357
|
10 author='Drew Perttula',
|
|
11 author_email='drewp@bigasterisk.com',
|
|
12 )
|