annotate lib/mqtt_client/setup.py @ 585:bac05a73a8ab
release 0.7.0
Ignore-this: 91592ac0e434c1585a7afbb0313f0f05
author |
drewp@bigasterisk.com |
date |
Fri, 10 May 2019 02:10:05 -0700 |
parents |
865dc66aa2c0 |
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 )
|