mirror of https://github.com/zulip/zulip.git
Ship all of our examples in the API update tarball.
(imported from commit 4162114707f69bcfb6ecea95d7bdf4c080b4b168)
This commit is contained in:
parent
22457277f4
commit
226378304c
|
@ -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/*"),
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue