Ship all of our examples in the API update tarball.

(imported from commit 4162114707f69bcfb6ecea95d7bdf4c080b4b168)
This commit is contained in:
Waseem Daher 2013-03-15 00:22:49 -04:00
parent 22457277f4
commit 226378304c
1 changed files with 2 additions and 2 deletions

View File

@ -21,12 +21,12 @@ setup(name='humbug',
],
url='https://humbughq.com/dist/api/',
packages=['humbug'],
data_files=[('share/humbug/examples', ["examples/humbugrc", "examples/send-message"])] + \
data_files=[('share/humbug/examples', glob.glob('examples/*'))] + \
[(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=["bin/humbug-send"],
scripts=glob.glob("bin/*"),
)