annotate lib/mqtt_client/setup.py @ 614:94bf6bbdbb04
fix graph view on ionode index page
Ignore-this: f23a0b33b6deef86de0843f9f950564c
author |
drewp@bigasterisk.com |
date |
Sat, 03 Aug 2019 17:02:41 -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 )
|