From 7bc910494f0ef53c9edca9da97aee58f2cfd5215 Mon Sep 17 00:00:00 2001 From: david Karchmer Date: Thu, 17 Nov 2016 12:38:26 -0800 Subject: [PATCH] Fix setup.py to include sub-packages --- setup.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 34a5d53..dbc95d9 100644 --- a/setup.py +++ b/setup.py @@ -1,13 +1,17 @@ from setuptools import setup setup(name='pystrato', - version='0.3.0', + version='0.3.1', description='Python client for https://iotile.cloud', url='https://github.com/iotile/strato_python_api', author='David Karchmer', author_email='david@arch-iot.com', license='MIT', - packages=['pystrato'], + packages=[ + 'pystrato', + 'pystrato.api', + 'pystrato.stream' + ], install_requires=[ 'requests', ],