Revert "Ship all of our examples in the API update tarball."

This reverts commit 4162114707f69bcfb6ecea95d7bdf4c080b4b168.

(imported from commit a4d68bc2a68209bed8e00e6d58dd5f5d3a3187f9)
This commit is contained in:
Waseem Daher 2013-03-15 00:26:49 -04:00
parent 5ef20bd159
commit 29cc30a27a

View file

@ -21,12 +21,12 @@ setup(name='humbug',
],
url='https://humbughq.com/dist/api/',
packages=['humbug'],
data_files=[('share/humbug/examples', glob.glob('examples/*'))] + \
data_files=[('share/humbug/examples', ["examples/humbugrc", "examples/send-message"])] + \
[(os.path.join('share/humbug/', relpath),
glob.glob(os.path.join(relpath, '*'))) for relpath in
glob.glob("integrations/*")] + \
[('share/humbug/demos',
[os.path.join("demos", relpath) for relpath in
os.listdir("demos")])],
scripts=glob.glob("bin/*"),
scripts=["bin/humbug-send"],
)