annotate lib/mqtt_client/setup.py @ 1388:3e9d9cbbb13f
release 0.7.0
Ignore-this: 91592ac0e434c1585a7afbb0313f0f05
darcs-hash:21e99b27f648db4b42a8b74a1963d3f6fa3e1453
author |
drewp <drewp@bigasterisk.com> |
date |
Fri, 10 May 2019 02:10:05 -0700 |
parents |
4e161b451e56 |
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 )
|