annotate lib/mqtt_client/setup.py @ 1512:1e9cfec1be78
don't require first arg on PatchedGraph.serialize
Ignore-this: bc695823e03dbd012e03efa4e40b6aca
darcs-hash:1dbf9271b5ca55c78987c474ef223af9d5b811d2
author |
drewp <drewp@bigasterisk.com> |
date |
Mon, 03 Feb 2020 23:46:29 -0800 |
parents |
67e8b237d7bf |
children |
|
rev |
line source |
1357
|
1 from setuptools import setup
|
|
2
|
|
3 setup(
|
|
4 name='mqtt_client',
|
1447
|
5 version='0.9.0',
|
1357
|
6 packages=['mqtt_client'],
|
|
7 package_dir={'mqtt_client': ''},
|
1444
|
8 install_requires=['rx>=3.0.0', 'twisted-mqtt'],
|
1447
|
9 url='https://projects.bigasterisk.com/mqtt-client/mqtt_client-0.9.0.tar.gz',
|
1357
|
10 author='Drew Perttula',
|
|
11 author_email='drewp@bigasterisk.com',
|
|
12 )
|