From 637dece8bd9c2d980fe840da4e7836263b4c6edd Mon Sep 17 00:00:00 2001 From: Jessica McKellar Date: Tue, 5 Feb 2013 11:03:18 -0500 Subject: [PATCH] Only include send_message-related examples in API release. (imported from commit 058a121b4b3c6b2829396c3c7a1007656a9e09da) --- setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 10c339a..02292ae 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,6 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -import glob import humbug from distutils.core import setup @@ -20,6 +19,6 @@ setup(name='humbug', ], url='https://humbughq.com/dist/api/', packages=['humbug'], - data_files=[('examples', glob.glob('examples/*'))], - scripts=glob.glob('bin/*'), + data_files=[('examples', ["examples/humbugrc", "examples/send-message"])], + scripts=["bin/humbug-send"], )