annotate lib/mqtt_client/setup.py @ 628:accbbd521ecd
wip for pytype support and separate device run loops on piNode
Ignore-this: 9aa9a3a7e715afefbc858050e02c4c62
author |
drewp@bigasterisk.com |
date |
Sat, 10 Aug 2019 23:33:50 -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 )
|