Add requirements handling.

This commit is contained in:
Thomas Klaehn 2019-08-14 15:04:28 +02:00
parent 2ce37d3a00
commit da1495d642
2 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ type 'python setup.py install' to install the distribution.
@author: Thomas Klaehn <thomas.klaehn@u-blox.com>
'''
from distutils.core import setup
from setuptools import setup
setup(name='mqtt', version='1.1.0', author='Thomas Klaehn',
author_email='tkl@blackfinn.de', packages=['mqtt'])
author_email='tkl@blackfinn.de', packages=['mqtt'], install_requires=['paho-mqtt'])