annotate lib/mqtt_client/setup.py @ 593:703c86e08932
release 0.7.0
Ignore-this: 448781516de2ee8bbb5e25a2a46a679
author |
drewp@bigasterisk.com |
date |
Sat, 06 Jul 2019 13:55:08 -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 )
|