Skip to content

Commit

Permalink
Fix setup.py to include sub-packages
Browse files Browse the repository at this point in the history
  • Loading branch information
dkarchmer committed Nov 17, 2016
1 parent b60dd16 commit 7bc9104
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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='[email protected]',
license='MIT',
packages=['pystrato'],
packages=[
'pystrato',
'pystrato.api',
'pystrato.stream'
],
install_requires=[
'requests',
],
Expand Down

0 comments on commit 7bc9104

Please sign in to comment.