summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorBen West <bewest@gmail.com>2015-05-01 19:26:38 -0700
committerBen West <bewest@gmail.com>2015-05-01 19:26:38 -0700
commitc1ccee70ec82d560f380fb623d6dd117dd3f972e (patch)
treeef242216a65da5c4132a0ce6c0680f896d1f5996 /setup.py
parent6c7df26409a80c819b36c4bcf21ce21697505a35 (diff)
also include all module properly in distribution
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index e0363ea..eaafe67 100644
--- a/setup.py
+++ b/setup.py
@@ -15,7 +15,7 @@ setup(name='dexcom_reader',
15 # I'm just maintaining the package, compbrain authored it. 15 # I'm just maintaining the package, compbrain authored it.
16 author_email="bewest+insulaudit@gmail.com", 16 author_email="bewest+insulaudit@gmail.com",
17 url="https://github.com/compbrain/dexcom_reader", 17 url="https://github.com/compbrain/dexcom_reader",
18 packages=['dexcom_reader'], 18 packages=find_packages( ),
19 install_requires = [ 19 install_requires = [
20 'pyserial' 20 'pyserial'
21 ], 21 ],